Compare commits

..

No commits in common. "6d3309ed2bcc00ec21dda5de90cbc6cef28b16dc" and "03b13c77aa4a5f2fa8fefbfecf199cd97c1e6555" have entirely different histories.

3 changed files with 12 additions and 22 deletions

View File

@ -1,8 +1,8 @@
/* /*
* @Author: gtz * @Author: gtz
* @Date: 2021-03-04 16:13:51 * @Date: 2021-03-04 16:13:51
* @LastEditors: zwq * @LastEditors: fzq
* @LastEditTime: 2022-03-22 10:35:16 * @LastEditTime: 2022-03-19 10:24:03
* @Description: file content * @Description: file content
*/ */
export default { export default {
@ -362,11 +362,6 @@ export default {
publishTask: 'Publish The Task', publishTask: 'Publish The Task',
startPosition: 'Start', startPosition: 'Start',
endPosition: 'End', endPosition: 'End',
taskType: 'Task Type', taskType: 'Task Type'
ExWarehouse: 'Ex Warehouse',
InWarehouse: 'In Warehouse',
Circulation: 'Circulation',
Initialization: 'Initialization',
Damage: 'Damage'
} }
} }

View File

@ -1,8 +1,8 @@
/* /*
* @Author: gtz * @Author: gtz
* @Date: 2021-03-04 16:13:51 * @Date: 2021-03-04 16:13:51
* @LastEditors: zwq * @LastEditors: fzq
* @LastEditTime: 2022-03-22 10:34:57 * @LastEditTime: 2022-03-20 09:45:01
* * @Description: file content * * @Description: file content
*/ */
export default { export default {
@ -366,11 +366,6 @@ export default {
publishTask: '发布任务', publishTask: '发布任务',
startPosition: '起点', startPosition: '起点',
endPosition: '终点', endPosition: '终点',
taskType: '任务类型', taskType: '任务类型'
ExWarehouse: '出库',
InWarehouse: '入库',
Circulation: '流转',
Initialization: '初始化',
Damage: '损坏'
} }
} }

View File

@ -2,7 +2,7 @@
* @Author: zwq * @Author: zwq
* @Date: 2020-12-29 15:41:11 * @Date: 2020-12-29 15:41:11
* @LastEditors: zwq * @LastEditors: zwq
* @LastEditTime: 2022-03-22 10:36:05 * @LastEditTime: 2022-03-16 09:45:43
* @Description: * @Description:
--> -->
<template> <template>
@ -194,20 +194,20 @@ export default {
size: 10 size: 10
}, },
taskTypeList: [{ taskTypeList: [{
'label': i18n.t('module.basicData.Warehouse.ExWarehouse'), 'label': '出库',
'value': 0 'value': 0
}, { }, {
'label': i18n.t('module.basicData.Warehouse.InWarehouse'), 'label': '入库',
'value': 1 'value': 1
}, { }, {
'label': i18n.t('module.basicData.Warehouse.Circulation'), 'label': '流转',
'value': 2 'value': 2
}], }],
TaskStatusList: [{ TaskStatusList: [{
'label': i18n.t('module.basicData.Warehouse.Initialization'), 'label': '初始化',
'value': 0 'value': 0
}, { }, {
'label': i18n.t('module.basicData.Warehouse.Damage'), 'label': '损坏',
'value': 1 'value': 1
}], }],
VehicleNameList: [{ VehicleNameList: [{