电力调度=》工电调度

This commit is contained in:
fan 2023-11-24 14:26:28 +08:00
parent 42cb54bf72
commit ed9340f261
7 changed files with 14 additions and 14 deletions

View File

@ -396,7 +396,7 @@ export function JobPaneData() {
],
},
{
name:"调度",
name:"电调度",
value:"dldd",
text:"负责供电系统的正常运行。",
picurl:"",

View File

@ -61,7 +61,7 @@ export default {
{ label: '司机', value: 'DRIVER', enLabel: 'Driver ' },
{ label: '通号', value: 'MAINTAINER', enLabel: 'Repairman ' },
{ label: '车辆段/停车场调度', value: 'DEPOT_DISPATCHER', enLabel: 'Depot dispatcher ' },
{ label: '调度', value: 'ELECTRIC_DISPATCHER', enLabel: 'Electric dispatcher' },
{ label: '电调度', value: 'ELECTRIC_DISPATCHER', enLabel: 'Electric dispatcher' },
{ label: '电力工务', value: 'STATION_ELECTRIC_WORKER', enLabel: 'Station electric worker' },
{ label: '行调', value: 'DISPATCHER', enLabel: 'Dispatcher ' },
{ label: '上级部门', value: 'PARENT_DEPARTMENT', enLabel: 'Parent department' },

View File

@ -37,7 +37,7 @@ export function covertMemberData (activeTrainList, resp) {
member.label = member.type + name + userName;
member.normalName = member.type + name;
}
const deviceType = ['行调', '通号', '行值', '司机', '车辆段/停车场调度', '上级部门', '调度', '车辆段/停车场信号楼', '车站助理', '车站站长',
const deviceType = ['行调', '通号', '行值', '司机', '车辆段/停车场调度', '上级部门', '电调度', '车辆段/停车场信号楼', '车站助理', '车站站长',
'车站信号员', '车站客运员', '车站扳道员', '车站引导员', '车站工务工', '设备管理员', '车务段段长', '电力工务', '值班站长', '站务员'];
/**

View File

@ -123,7 +123,7 @@ export default {
},
{
id: "23",
name: "调度职责介绍",
name: "电调度职责介绍",
pic: '/other/23.png',
},
{

View File

@ -410,8 +410,8 @@ export default {
dispatcherList[item.id] = this.memberData[item.id];
break;
case 'ELECTRIC_DISPATCHER':
this.memberData[item.id].label = '调度' + (item.name || '');
this.memberData[item.id].labelName = '调度' + (item.name || '');
this.memberData[item.id].label = '电调度' + (item.name || '');
this.memberData[item.id].labelName = '电调度' + (item.name || '');
electricDispatcherList[item.id] = this.memberData[item.id];
break;
case 'DEPOT_DISPATCHER':
@ -539,7 +539,7 @@ export default {
children: parentDepartmentList
}, {
label: '调度',
label: '电调度',
id: 'electricDispatcher',
type: 'role',
children: electricDispatcherList

View File

@ -320,8 +320,8 @@ export default {
dispatcherList[item.id] = this.memberData[item.id];
break;
case 'ELECTRIC_DISPATCHER':
this.memberData[item.id].label = '调度' + (item.name || '');
this.memberData[item.id].labelName = '调度' + (item.name || '');
this.memberData[item.id].label = '电调度' + (item.name || '');
this.memberData[item.id].labelName = '电调度' + (item.name || '');
electricDispatcherList[item.id] = this.memberData[item.id];
break;
case 'DEPOT_DISPATCHER':
@ -447,7 +447,7 @@ export default {
children: parentDepartmentList
}, {
label: '调度',
label: '电调度',
id: 'electricDispatcher',
type: 'role',
children: electricDispatcherList

View File

@ -218,7 +218,7 @@ export default {
type: 'role',
children: result.deviceListData[5]
}, {
label: '调度',
label: '电调度',
id: 'electricDispatcher',
type: 'role',
children: result.deviceListData[6]
@ -344,7 +344,7 @@ export default {
const covertmember = this.covert(lastData, ConstConfig.ConstSelect.roleTypeNew);
const newMember = covertmember[0];
this.memberList.push(newMember);
const deviceTypeList = ['行调', '行值', '司机', '通号', '车辆段/停车场调度', '上级部门', '调度', '车辆段/停车场信号楼', '车站助理', '车站站长', '车站信号员', '车站客运员', '车站扳道员', '车站引导员', '车站工务工', '设备管理员', '车务段段长', '电力工务'];
const deviceTypeList = ['行调', '行值', '司机', '通号', '车辆段/停车场调度', '上级部门', '电调度', '车辆段/停车场信号楼', '车站助理', '车站站长', '车站信号员', '车站客运员', '车站扳道员', '车站引导员', '车站工务工', '设备管理员', '车务段段长', '电力工务'];
const index = deviceTypeList.indexOf(newMember.type);
if (index >= 0) {
const treeDataIn = this.treeData[index];
@ -553,7 +553,7 @@ export default {
prdType = '';
role.type = 'PARENT_DEPARTMENT';
this.$store.dispatch('training/setRoles', 'PARENT_DEPARTMENT');
} else if (role.type == '调度') {
} else if (role.type == '电调度') {
prdType = '';
role.type = 'ELECTRIC_DISPATCHER';
this.$store.dispatch('training/setRoles', 'ELECTRIC_DISPATCHER');
@ -629,7 +629,7 @@ export default {
'MAINTAINER':'通号',
'DEPOT_DISPATCHER':'车辆段/停车场调度',
'PARENT_DEPARTMENT':'上级部门',
'ELECTRIC_DISPATCHER':'调度',
'ELECTRIC_DISPATCHER':'电调度',
'SIGNAL_BUILDING':'车辆段/停车场信号楼',
'STATION_ASSISTANT':'车站助理',
'STATION_MASTER':'车站站长',