Merge branch 'test' of https://git.code.tencent.com/lian-cbtc/jl-client into test
This commit is contained in:
commit
f2df9fb453
@ -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) => {
|
||||
|
@ -268,7 +268,10 @@ export default {
|
||||
float: right;
|
||||
right: 20px;
|
||||
bottom: 15px;
|
||||
z-index: 38;
|
||||
}
|
||||
.ibp-canvas{
|
||||
position: absolute;
|
||||
z-index: 37;
|
||||
}
|
||||
</style>
|
||||
|
@ -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;
|
||||
|
@ -131,9 +131,6 @@ export default {
|
||||
},
|
||||
username() {
|
||||
return this.$store.state.user.nickname;
|
||||
},
|
||||
projectDevice() {
|
||||
return this.$store.state.user.projectDevice;
|
||||
}
|
||||
},
|
||||
watch: {
|
||||
|
Loading…
Reference in New Issue
Block a user