This commit is contained in:
fan 2023-04-25 13:56:24 +08:00
commit 034199ec23
5 changed files with 9 additions and 9 deletions

View File

@ -78,7 +78,7 @@ export default {
], ],
roleTypeList: [ roleTypeList: [
{label: '行调', value: 'DISPATCHER'}, {label: '行调', value: 'DISPATCHER'},
{label: 'NCC调', value: 'NCC_DISPATCHER'}, {label: 'NCC', value: 'NCC_DISPATCHER'},
{label: '行值', value: 'STATION_SUPERVISOR'}, {label: '行值', value: 'STATION_SUPERVISOR'},
{label: '司机', value: 'DRIVER'}, {label: '司机', value: 'DRIVER'},
{label: '通号', value: 'MAINTAINER'}, {label: '通号', value: 'MAINTAINER'},

View File

@ -81,7 +81,7 @@ export default {
], ],
typeList: [ typeList: [
{label: '行调', value: 'DISPATCHER'}, {label: '行调', value: 'DISPATCHER'},
{label: 'NCC调', value: 'NCC_DISPATCHER'}, {label: 'NCC', value: 'NCC_DISPATCHER'},
{label: '通号', value: 'MAINTAINER'}, {label: '通号', value: 'MAINTAINER'},
{label: '车站值班员', value: 'STATION_SUPERVISOR'}, {label: '车站值班员', value: 'STATION_SUPERVISOR'},
{label: '车站助理', value: 'STATION_ASSISTANT'}, {label: '车站助理', value: 'STATION_ASSISTANT'},

View File

@ -97,7 +97,7 @@ export default {
labelName: '行调', labelName: '行调',
children: [] children: []
}, { }, {
labelName: 'NCC调', labelName: 'NCC',
children: [] children: []
}, { }, {
labelName: '车站值班员', labelName: '车站值班员',
@ -202,7 +202,7 @@ export default {
dispatcherList.push(this.memberData[item.id]); dispatcherList.push(this.memberData[item.id]);
break; break;
case 'NCC_DISPATCHER': case 'NCC_DISPATCHER':
this.memberData[item.id].labelName = 'NCC调' + (item.name || ''); this.memberData[item.id].labelName = 'NCC' + (item.name || '');
nccDispatcherList.push(this.memberData[item.id]); nccDispatcherList.push(this.memberData[item.id]);
break; break;
case 'ELECTRIC_DISPATCHER': case 'ELECTRIC_DISPATCHER':
@ -281,7 +281,7 @@ export default {
id: 'dispatcher', id: 'dispatcher',
children: dispatcherList children: dispatcherList
}, { }, {
labelName: 'NCC调', labelName: 'NCC',
id: 'nccDispatcher', id: 'nccDispatcher',
children: nccDispatcherList children: nccDispatcherList
}, { }, {

View File

@ -93,7 +93,7 @@ export default {
labelName: '行调', labelName: '行调',
children: [] children: []
}, { }, {
labelName: 'NCC调', labelName: 'NCC',
children: [] children: []
}, { }, {
labelName: '车站值班员', labelName: '车站值班员',
@ -239,7 +239,7 @@ export default {
dispatcherList.push(this.memberData[item.id]); dispatcherList.push(this.memberData[item.id]);
break; break;
case 'NCC_DISPATCHER': case 'NCC_DISPATCHER':
this.memberData[item.id].labelName = 'NCC调' + (item.name || ''); this.memberData[item.id].labelName = 'NCC' + (item.name || '');
nccDispatcherList.push(this.memberData[item.id]); nccDispatcherList.push(this.memberData[item.id]);
break; break;
case 'ELECTRIC_DISPATCHER': case 'ELECTRIC_DISPATCHER':
@ -318,7 +318,7 @@ export default {
id: 'dispatcher', id: 'dispatcher',
children: dispatcherList children: dispatcherList
}, { }, {
labelName: 'NCC调', labelName: 'NCC',
id: 'nccDispatcher', id: 'nccDispatcher',
children: nccDispatcherList children: nccDispatcherList
}, { }, {

View File

@ -245,7 +245,7 @@
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="12"> <el-col :span="12">
<el-form-item label="NCC调:" prop="NCC_DISPATCHER"> <el-form-item label="NCC" prop="NCC_DISPATCHER">
<el-input-number v-model="batchForm.NCC_DISPATCHER" size="small" :min="0" :step="1" :precision="0" /> <el-input-number v-model="batchForm.NCC_DISPATCHER" size="small" :min="0" :step="1" :precision="0" />
</el-form-item> </el-form-item>
</el-col> </el-col>