30 lines
897 B
HTML
30 lines
897 B
HTML
<!doctype html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>运转系统</title>
|
|
<link rel="stylesheet" href="/ui/styles.css" />
|
|
<link rel="stylesheet" href="/ui/ops-styles.css" />
|
|
</head>
|
|
<body>
|
|
<div data-partial="/ui/html/topbar.html"></div>
|
|
|
|
<nav class="ops-tabbar">
|
|
<button type="button" class="tab-btn" id="tabMonitor">运行监控</button>
|
|
<button type="button" class="tab-btn" id="tabConfig">段 / 工位配置</button>
|
|
</nav>
|
|
|
|
<main class="ops-main">
|
|
<div class="ops-view" data-view="monitor">
|
|
<div data-partial="/ui/html/segment-panel.html"></div>
|
|
</div>
|
|
<div class="ops-view hidden" data-view="config">
|
|
<div data-partial="/ui/html/config-panel.html"></div>
|
|
</div>
|
|
</main>
|
|
|
|
<script type="module" src="/ui/js/index.js"></script>
|
|
</body>
|
|
</html>
|