desc: 修改快速入口提示问题
This commit is contained in:
parent
eef2fed8a2
commit
62674f84ff
@ -103,16 +103,20 @@ export default {
|
|||||||
|
|
||||||
},
|
},
|
||||||
async handleJoin() {
|
async handleJoin() {
|
||||||
await getjointTraining(this.group);
|
if (this.group) {
|
||||||
if (this.state == '02') {
|
await getjointTraining(this.group);
|
||||||
launchFullscreen();
|
if (this.state == '02') {
|
||||||
await putJointTrainingSimulationEntrance(this.group);
|
launchFullscreen();
|
||||||
const rest = await getPublishMapInfo(this.mapId);
|
await putJointTrainingSimulationEntrance(this.group);
|
||||||
const query = { skinStyle: rest.data.skinStyle, mapId: this.mapId, group: this.group };
|
const rest = await getPublishMapInfo(this.mapId);
|
||||||
this.$router.push({ path: `/jointTraining`, query: query });
|
const query = { skinStyle: rest.data.skinStyle, mapId: this.mapId, group: this.group };
|
||||||
} else if (this.state == '01') {
|
this.$router.push({ path: `/jointTraining`, query: query });
|
||||||
const query = { group: this.group };
|
} else if (this.state == '01') {
|
||||||
this.$router.push({ path: `/trainroom`, query: query });
|
const query = { group: this.group };
|
||||||
|
this.$router.push({ path: `/trainroom`, query: query });
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
this.$message.info('您没有选择房间');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user