add: 添加二次分配顶点任务
This commit is contained in:
@@ -10,6 +10,7 @@ export default {
|
||||
'Warehouse_task_type': 'Warehouse Task Type',
|
||||
'AGV_system': 'AGV System',
|
||||
'Routing_scheme': 'Routing Scheme',
|
||||
'agv_action_type': 'agv Secondary allocation type',
|
||||
'Priority': 'Priority',
|
||||
'Vehicle_number': 'Vehicle Number',
|
||||
'Task_code': 'Task Code',
|
||||
|
||||
@@ -10,6 +10,7 @@ export default {
|
||||
'Warehouse_task_type': 'Jenis Tugas Gudang',
|
||||
'AGV_system': 'Sistem AGV',
|
||||
'Routing_scheme': 'Skema Routing',
|
||||
'agv_action_type': 'Tipe distribusi kedua agv',
|
||||
'Priority': 'Prioritas',
|
||||
'Vehicle_number': 'Nomor Kendaraan',
|
||||
'Task_code': 'Nomor Tugas',
|
||||
|
||||
@@ -10,6 +10,7 @@ export default {
|
||||
'Warehouse_task_type': '立库任务类型',
|
||||
'AGV_system': 'agv系统',
|
||||
'Routing_scheme': '路由方案',
|
||||
'agv_action_type': 'agv二次分配类型',
|
||||
'Priority': '优先级',
|
||||
'Vehicle_number': '载具号',
|
||||
'Task_code': '任务号',
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
<el-form ref="form" :inline="true" :model="form" :rules="rules" size="small" label-width="78px">
|
||||
<el-row>
|
||||
<el-col :span="8">
|
||||
<el-form-item label="检验有货">
|
||||
<el-form-item label="忽略校验">
|
||||
<el-switch v-model="form.inspect_in_stocck" />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
|
||||
@@ -204,6 +204,23 @@
|
||||
/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item :label="$t('task.txt_box.agv_action_type')">
|
||||
<el-select
|
||||
v-model="form.agv_action_type"
|
||||
style="width: 370px;"
|
||||
filterable
|
||||
:placeholder="$t('task.select.Placeholder')"
|
||||
default-first-option
|
||||
@change="isDisabled=false"
|
||||
>
|
||||
<el-option
|
||||
v-for="item in agvActionList"
|
||||
:key="item.key"
|
||||
:label="item.key"
|
||||
:value="item.value"
|
||||
/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item :label="$t('task.select.Start_point')" prop="start_point_code">
|
||||
<el-select
|
||||
v-model="form.start_point_code"
|
||||
@@ -649,6 +666,12 @@ export default {
|
||||
materialList: [],
|
||||
statusList: [],
|
||||
routeList: [],
|
||||
agvActionList: [
|
||||
{ key: '普通任务', value: 1 },
|
||||
{ key: '取货二次分配', value: 2 },
|
||||
{ key: '防货二次分配', value: 3 },
|
||||
{ key: '取放货二次分配', value: 4 }
|
||||
],
|
||||
task_type: [],
|
||||
fromYList: [],
|
||||
fromZList: [],
|
||||
@@ -680,6 +703,7 @@ export default {
|
||||
remark: null,
|
||||
material: null,
|
||||
route_plan_code: 'normal',
|
||||
agv_action_type: 1,
|
||||
from_x: null,
|
||||
from_y: null,
|
||||
from_z: null,
|
||||
|
||||
Reference in New Issue
Block a user