- 新增 web/batch.html + batch.js:目录树选择器(懒加载,本地后端 提供 roots/dirs 接口)、工作流下拉、进度与产物下载 - 四个页面导航栏增加"批量处理"入口;styles.css 补齐批量页样式
51 lines
1.6 KiB
HTML
51 lines
1.6 KiB
HTML
<!doctype html>
|
|
<!-- VRSub 任务管理页:展示全部任务的实时进度、产物下载与失败重试。 -->
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>VRSub - 任务管理</title>
|
|
<link rel="stylesheet" href="/assets/styles.css?v=2" />
|
|
</head>
|
|
<body>
|
|
<header class="topbar">
|
|
<a class="brand" href="/">VRSub</a>
|
|
<nav>
|
|
<a href="/">发起任务</a>
|
|
<a href="/tasks.html">任务管理</a>
|
|
<a href="/batch.html">批量处理</a>
|
|
<a href="/admin.html">管理后台</a>
|
|
<a href="/workflow.html">工作流</a>
|
|
</nav>
|
|
</header>
|
|
|
|
<main class="container">
|
|
<h1>任务管理</h1>
|
|
<p class="muted">查看全部任务的执行进度;运行中的任务可暂停/继续,完成的任务可下载产物,失败的任务可以重新排队执行。</p>
|
|
|
|
<!-- 任务列表由 assets/app.js 的 loadRuns 定期刷新填充,展示进度条与下载链接。 -->
|
|
<section class="panel">
|
|
<div class="table-wrap">
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>任务 ID</th>
|
|
<th>工作流</th>
|
|
<th>状态</th>
|
|
<th>当前节点</th>
|
|
<th>进度</th>
|
|
<th>创建时间</th>
|
|
<th>产物</th>
|
|
<th>操作</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="runList"></tbody>
|
|
</table>
|
|
</div>
|
|
</section>
|
|
</main>
|
|
|
|
<script src="/assets/app.js?v=2"></script>
|
|
</body>
|
|
</html>
|