mirror of
https://github.com/deepmodeling/Uni-Lab-OS
synced 2026-04-01 18:36:47 +00:00
新增 labware_manager 模块: - Web UI 支持耗材 CRUD、SVG 俯视图/侧面图实时预览 - SVG 支持触控板双指缩放(pinch-to-zoom)和平移 - 网格排列自动居中按钮(autoCenter) - 表单参数标签中英文双语显示 - 从已有代码/YAML 导入、Python/YAML 代码生成 更新 CLAUDE.md:补充 labware manager、decorator 注册模式、CI 说明 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
25 lines
688 B
HTML
25 lines
688 B
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{% block title %}PRCXI 耗材管理{% endblock %}</title>
|
|
<link rel="stylesheet" href="/static/style.css">
|
|
{% block head_extra %}{% endblock %}
|
|
</head>
|
|
<body>
|
|
<nav class="topbar">
|
|
<a href="/" class="logo">PRCXI 耗材管理</a>
|
|
<div class="nav-actions">
|
|
<a href="/labware/new" class="btn btn-primary btn-sm">+ 新建耗材</a>
|
|
</div>
|
|
</nav>
|
|
|
|
<main class="container">
|
|
{% block content %}{% endblock %}
|
|
</main>
|
|
|
|
{% block scripts %}{% endblock %}
|
|
</body>
|
|
</html>
|