add 项目更新
This commit is contained in:
@@ -23,7 +23,9 @@ export default {
|
||||
'start_or_end': '起点或终点',
|
||||
'time': '时间段',
|
||||
'empty_shaft_position': '空轴位',
|
||||
'extension_field': '扩展字段'
|
||||
'extension_field': '扩展字段',
|
||||
'car_type': '车辆类型',
|
||||
'car_width': '货叉宽度'
|
||||
},
|
||||
'select': {
|
||||
'automated_warehouse_task_type': '立库任务类型',
|
||||
|
||||
@@ -138,6 +138,25 @@
|
||||
/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item :label="$t('task.txt_box.car_type')">
|
||||
<el-select
|
||||
v-model="form.car_type"
|
||||
style="width: 370px;"
|
||||
filterable
|
||||
:placeholder="$t('task.select.Placeholder')"
|
||||
@change="isDisabled=false"
|
||||
>
|
||||
<el-option
|
||||
v-for="item in carList"
|
||||
:key="item.key"
|
||||
:label="item.key"
|
||||
:value="item.value"
|
||||
/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item :label="$t('task.txt_box.car_width')">
|
||||
<el-input v-model="form.car_width" style="width: 370px;" @change="isDisabled=false" />
|
||||
</el-form-item>
|
||||
<el-form-item :label="$t('task.txt_box.Task_type')">
|
||||
<el-select
|
||||
v-model="form.task_type"
|
||||
@@ -700,6 +719,10 @@ export default {
|
||||
{ key: '防货二次分配', value: 3 },
|
||||
{ key: '取放货二次分配', value: 4 }
|
||||
],
|
||||
carList: [
|
||||
{ key: 'PS20', value: 1 },
|
||||
{ key: 'RT', value: 2 }
|
||||
],
|
||||
task_type: [],
|
||||
fromYList: [],
|
||||
fromZList: [],
|
||||
@@ -732,6 +755,8 @@ export default {
|
||||
material: null,
|
||||
route_plan_code: 'normal',
|
||||
agv_action_type: 1,
|
||||
car_type: null,
|
||||
car_width: null,
|
||||
from_x: null,
|
||||
from_y: null,
|
||||
from_z: null,
|
||||
|
||||
Reference in New Issue
Block a user