taskmanage

This commit is contained in:
2023-05-18 18:14:13 +08:00
parent d07b2af7f5
commit 30ee54dabb
2 changed files with 6 additions and 2 deletions

View File

@@ -7,14 +7,18 @@
<div class="con1">
<table class="filter-table">
<tr>
<th>序号</th>
<th>任务号</th>
<th>出发起点</th>
<th>目标站点</th>
<th>任务状态</th>
<th>生成时间</th>
</tr>
<tr v-for="e in dataList" :key="e.task_id">
<tr v-for="(e, index) in dataList" :key="e.task_id">
<td>{{index+1}}</td>
<td>{{e.task_no}}</td>
<td>{{e.next_point}}</td>
<td>{{e.next_point}}</td>
<td>{{e.status}}</td>
<td class="last-td">{{e.time}}</td>
</tr>

View File

@@ -88,7 +88,7 @@ export default {
index: 1
},
{
label: '任务管理',
label: '任务操作',
index: 2
}
],