修改项目设备登录问题
This commit is contained in:
parent
edadc872ed
commit
df53224447
@ -271,10 +271,11 @@ export default {
|
|||||||
const group = resp.data;
|
const group = resp.data;
|
||||||
getLoginInfo(getToken()).then(resp => {
|
getLoginInfo(getToken()).then(resp => {
|
||||||
const deviceVO = resp.data.deviceVO;
|
const deviceVO = resp.data.deviceVO;
|
||||||
|
const accountVO = resp.data.accountVO;
|
||||||
if (deviceVO) {
|
if (deviceVO) {
|
||||||
const config = JSON.parse(deviceVO.config || '{}');
|
const config = JSON.parse(deviceVO.config || '{}');
|
||||||
if (config && config.roleCode) {
|
if (config && config.roleCode) {
|
||||||
const params = [{userId: res.id, memberId:config.roleCode}];
|
const params = [{userId: accountVO.id, memberId:config.roleCode}];
|
||||||
assignUsersPlayRoles(params, group).then(() => {
|
assignUsersPlayRoles(params, group).then(() => {
|
||||||
this.enterSimulation(group, mapId, config);
|
this.enterSimulation(group, mapId, config);
|
||||||
}).catch(res=>{
|
}).catch(res=>{
|
||||||
|
@ -158,7 +158,9 @@ export default {
|
|||||||
this.initMemberUserInfo();
|
this.initMemberUserInfo();
|
||||||
this.setCentralizedStationList(map); // 获取集中站列表
|
this.setCentralizedStationList(map); // 获取集中站列表
|
||||||
if (this.$route.query.client) {
|
if (this.$route.query.client) {
|
||||||
this.pictureChange(this.$route.query.client);
|
setTimeout(() => {
|
||||||
|
this.pictureChange(this.$route.query.client);
|
||||||
|
}, 200);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
|
Loading…
Reference in New Issue
Block a user