|
@ -109,7 +109,11 @@ |
|
|
<el-table-column type="selection" width="55" /> |
|
|
<el-table-column type="selection" width="55" /> |
|
|
<el-table-column v-if="false" prop="instruction_id" label="指令标识" /> |
|
|
<el-table-column v-if="false" prop="instruction_id" label="指令标识" /> |
|
|
<el-table-column prop="instruction_code" label="指令编号" /> |
|
|
<el-table-column prop="instruction_code" label="指令编号" /> |
|
|
<el-table-column prop="instruction_type" label="指令类型" /> |
|
|
<el-table-column prop="instruction_type" label="指令类型"> |
|
|
|
|
|
<template slot-scope="scope"> |
|
|
|
|
|
{{ dict.label.task_type[scope.row.instruction_type] }} |
|
|
|
|
|
</template> |
|
|
|
|
|
</el-table-column> |
|
|
<!-- <el-table-column prop="link_num" label="关联编号" />--> |
|
|
<!-- <el-table-column prop="link_num" label="关联编号" />--> |
|
|
<el-table-column prop="task_code" label="任务号" /> |
|
|
<el-table-column prop="task_code" label="任务号" /> |
|
|
<el-table-column prop="vehicle_code" label="载具号" /> |
|
|
<el-table-column prop="vehicle_code" label="载具号" /> |
|
@ -216,7 +220,7 @@ const defaultForm = { |
|
|
update_time: null |
|
|
update_time: null |
|
|
} |
|
|
} |
|
|
export default { |
|
|
export default { |
|
|
dicts: ['task_status'], |
|
|
dicts: ['task_status', 'task_type'], |
|
|
name: 'Instruction', |
|
|
name: 'Instruction', |
|
|
components: { crudOperation }, |
|
|
components: { crudOperation }, |
|
|
mixins: [presenter(), header(), form(defaultForm), crud()], |
|
|
mixins: [presenter(), header(), form(defaultForm), crud()], |
|
|