项目登录虚拟ibp调整
This commit is contained in:
parent
0c97289ff1
commit
08a33ae6aa
@ -31,9 +31,6 @@ const user = {
|
|||||||
SET_NICKNAME: (state, nickname) => {
|
SET_NICKNAME: (state, nickname) => {
|
||||||
state.nickname = nickname;
|
state.nickname = nickname;
|
||||||
},
|
},
|
||||||
SET_PROJECTDEVICE: (state, projectDevice) => {
|
|
||||||
state.projectDevice = projectDevice;
|
|
||||||
},
|
|
||||||
SET_ROLES: (state, roles) => {
|
SET_ROLES: (state, roles) => {
|
||||||
state.roles = roles;
|
state.roles = roles;
|
||||||
},
|
},
|
||||||
@ -110,9 +107,6 @@ const user = {
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
SetProjecteDevice({ commit }, deviceVo) {
|
|
||||||
commit('SET_PROJECTDEVICE', deviceVo);
|
|
||||||
},
|
|
||||||
// 获取用户信息
|
// 获取用户信息
|
||||||
GetInfo({ commit }, token) {
|
GetInfo({ commit }, token) {
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
|
@ -493,7 +493,6 @@ export default {
|
|||||||
}
|
}
|
||||||
} else if (this.$route.query.projectDevice) {
|
} else if (this.$route.query.projectDevice) {
|
||||||
getLoginInfo(getToken()).then(res => {
|
getLoginInfo(getToken()).then(res => {
|
||||||
this.$store.dispatch('SetProjecteDevice', res.data.deviceVO);
|
|
||||||
getSimulationInfoNew(res.data.group).then(resp => {
|
getSimulationInfoNew(res.data.group).then(resp => {
|
||||||
const query = {
|
const query = {
|
||||||
group: res.data.group,
|
group: res.data.group,
|
||||||
|
@ -339,7 +339,7 @@ export default {
|
|||||||
this.$store.dispatch('training/setRoleDeviceCode', data.deviceCode);
|
this.$store.dispatch('training/setRoleDeviceCode', data.deviceCode);
|
||||||
this.isAdmin = data.admin;
|
this.isAdmin = data.admin;
|
||||||
|
|
||||||
const deviceVO = this.$store.state.user.projectDevice;
|
const deviceVO = JSON.parse(getSessionStorage('projectDevice'));
|
||||||
if (deviceVO && deviceVO.type === 'VR_IBP') {
|
if (deviceVO && deviceVO.type === 'VR_IBP') {
|
||||||
this.showIbp(this.deviceCode);
|
this.showIbp(this.deviceCode);
|
||||||
const config = JSON.parse(deviceVO.config);
|
const config = JSON.parse(deviceVO.config);
|
||||||
@ -405,7 +405,6 @@ export default {
|
|||||||
case 'STATION_SUPERVISOR':
|
case 'STATION_SUPERVISOR':
|
||||||
this.$store.dispatch('training/setPrdType', '01');
|
this.$store.dispatch('training/setPrdType', '01');
|
||||||
this.$store.dispatch('training/setRoles', 'STATION_SUPERVISOR');
|
this.$store.dispatch('training/setRoles', 'STATION_SUPERVISOR');
|
||||||
this.hideIbp();
|
|
||||||
if (this.lineCode === '06' && deviceCode) {
|
if (this.lineCode === '06' && deviceCode) {
|
||||||
this.$refs.menuSchema.chiShowStation = deviceCode;
|
this.$refs.menuSchema.chiShowStation = deviceCode;
|
||||||
this.mapViewLoadedOver && this.switchStationMode(deviceCode);
|
this.mapViewLoadedOver && this.switchStationMode(deviceCode);
|
||||||
@ -499,6 +498,7 @@ export default {
|
|||||||
window.open(routeData.href, '_blank', 'noopener noreferrer');
|
window.open(routeData.href, '_blank', 'noopener noreferrer');
|
||||||
},
|
},
|
||||||
showdriving() {
|
showdriving() {
|
||||||
|
console.log('***************');
|
||||||
this.panelShow = true;
|
this.panelShow = true;
|
||||||
this.drivingShow = false;
|
this.drivingShow = false;
|
||||||
this.ibpShow = false;
|
this.ibpShow = false;
|
||||||
|
@ -131,9 +131,6 @@ export default {
|
|||||||
},
|
},
|
||||||
username() {
|
username() {
|
||||||
return this.$store.state.user.nickname;
|
return this.$store.state.user.nickname;
|
||||||
},
|
|
||||||
projectDevice() {
|
|
||||||
return this.$store.state.user.projectDevice;
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
|
Loading…
Reference in New Issue
Block a user