Files
vd_test_fixture/edc-web/app/templates/devices.html
wangfq 70dd3f8246 feat: 新增 edc-web Flask 前端管理系统 + 需求文档
- edc-web: Flask 项目骨架(设备管理、测试操作、测试信息三大页面)
- edc_server: 升级子模块(tb_serialnet 透传支持)
- docs: 测试工装EDC管理系统需求文档
2026-05-28 09:40:45 +08:00

25 lines
599 B
HTML

{% extends "base.html" %}
{% block title %}设备列表 - EDC 工装管理系统{% endblock %}
{% block content %}
<h2>联网终端列表</h2>
<table id="device-table">
<thead>
<tr>
<th>设备编码</th>
<th>名称</th>
<th>IP 地址</th>
<th>在线状态</th>
<th>固件版本</th>
<th>最后上线</th>
<th>操作</th>
</tr>
</thead>
<tbody></tbody>
</table>
{% endblock %}
{% block scripts %}
<script src="{{ url_for('static', filename='js/devices.js') }}"></script>
{% endblock %}