add:CTU和AGV

This commit is contained in:
2025-03-17 17:36:42 +08:00
parent a555755f13
commit e46efbf7a1
71 changed files with 3798 additions and 466 deletions

View File

@@ -143,7 +143,7 @@
<el-table-column prop="instruction_code" :label="$t('Inst.table.instruction_code')" :min-width="flexWidth('instruction_code',crud.data,$t('Inst.table.instruction_code'))" />
<el-table-column prop="instruction_type" :label="$t('Inst.table.instruction_type')" :min-width="flexWidth('instruction_type',crud.data,$t('Inst.table.instruction_type'))">
<template slot-scope="scope">
{{ dict.label.task_type[scope.row.instruction_type] }}
{{ dict.label.instruction_type[scope.row.instruction_type] }}
</template>
</el-table-column>
<el-table-column prop="put_point_code" :label="$t('Inst.table.put_point_code')" :min-width="flexWidth('put_point_code',crud.data,$t('Inst.table.put_point_code'))" />
@@ -260,7 +260,7 @@ const defaultForm = {
update_time: null
}
export default {
dicts: ['task_status', 'task_type'],
dicts: ['task_status', 'task_type', 'instruction_type'],
name: 'Instruction',
components: { crudOperation, pagination, rrOperation },
mixins: [presenter(), header(), form(defaultForm), crud()],

View File

@@ -111,7 +111,9 @@ export default {
'ACS->HR',
'HR->ACS',
'ACS->AGV',
'AGV->ACS'
'AGV->ACS',
'ACS->HK',
'HK->ACS'
]
}
},