项目登录虚拟ibp调整

This commit is contained in:
fan 2020-08-26 17:09:55 +08:00
parent 0c97289ff1
commit 08a33ae6aa
4 changed files with 2 additions and 12 deletions

View File

@ -31,9 +31,6 @@ const user = {
SET_NICKNAME: (state, nickname) => {
state.nickname = nickname;
},
SET_PROJECTDEVICE: (state, projectDevice) => {
state.projectDevice = projectDevice;
},
SET_ROLES: (state, roles) => {
state.roles = roles;
},
@ -110,9 +107,6 @@ const user = {
});
});
},
SetProjecteDevice({ commit }, deviceVo) {
commit('SET_PROJECTDEVICE', deviceVo);
},
// 获取用户信息
GetInfo({ commit }, token) {
return new Promise((resolve, reject) => {

View File

@ -493,7 +493,6 @@ export default {
}
} else if (this.$route.query.projectDevice) {
getLoginInfo(getToken()).then(res => {
this.$store.dispatch('SetProjecteDevice', res.data.deviceVO);
getSimulationInfoNew(res.data.group).then(resp => {
const query = {
group: res.data.group,

View File

@ -339,7 +339,7 @@ export default {
this.$store.dispatch('training/setRoleDeviceCode', data.deviceCode);
this.isAdmin = data.admin;
const deviceVO = this.$store.state.user.projectDevice;
const deviceVO = JSON.parse(getSessionStorage('projectDevice'));
if (deviceVO && deviceVO.type === 'VR_IBP') {
this.showIbp(this.deviceCode);
const config = JSON.parse(deviceVO.config);
@ -405,7 +405,6 @@ export default {
case 'STATION_SUPERVISOR':
this.$store.dispatch('training/setPrdType', '01');
this.$store.dispatch('training/setRoles', 'STATION_SUPERVISOR');
this.hideIbp();
if (this.lineCode === '06' && deviceCode) {
this.$refs.menuSchema.chiShowStation = deviceCode;
this.mapViewLoadedOver && this.switchStationMode(deviceCode);
@ -499,6 +498,7 @@ export default {
window.open(routeData.href, '_blank', 'noopener noreferrer');
},
showdriving() {
console.log('***************');
this.panelShow = true;
this.drivingShow = false;
this.ibpShow = false;

View File

@ -131,9 +131,6 @@ export default {
},
username() {
return this.$store.state.user.nickname;
},
projectDevice() {
return this.$store.state.user.projectDevice;
}
},
watch: {