Revert "Revert "NCC行调名称调整成NCC调度""

This reverts commit a7b0609389.
This commit is contained in:
fan 2023-05-22 11:18:02 +08:00
parent e1bf3dbcea
commit 5eb2a3f80c
3 changed files with 5 additions and 5 deletions

View File

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

View File

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

View File

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