taskmanage
This commit is contained in:
@@ -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>
|
||||
|
||||
@@ -88,7 +88,7 @@ export default {
|
||||
index: 1
|
||||
},
|
||||
{
|
||||
label: '任务管理',
|
||||
label: '任务操作',
|
||||
index: 2
|
||||
}
|
||||
],
|
||||
|
||||
Reference in New Issue
Block a user