添加加载脚本失败后,提示后台错误
This commit is contained in:
parent
c239e98ae8
commit
c433cb5045
@ -3,8 +3,8 @@ export function getBaseUrl() {
|
|||||||
let BASE_API;
|
let BASE_API;
|
||||||
if (process.env.NODE_ENV === 'development') {
|
if (process.env.NODE_ENV === 'development') {
|
||||||
// BASE_API = 'https://joylink.club/jlcloud';
|
// BASE_API = 'https://joylink.club/jlcloud';
|
||||||
// BASE_API = 'https://test.joylink.club/jlcloud';
|
BASE_API = 'https://test.joylink.club/jlcloud';
|
||||||
BASE_API = 'http://192.168.3.5:9000'; // 袁琪
|
// BASE_API = 'http://192.168.3.5:9000'; // 袁琪
|
||||||
// BASE_API = 'http://192.168.3.6:9000'; // 旭强
|
// BASE_API = 'http://192.168.3.6:9000'; // 旭强
|
||||||
// BASE_API = 'http://192.168.3.4:9000' // 琰培
|
// BASE_API = 'http://192.168.3.4:9000' // 琰培
|
||||||
} else {
|
} else {
|
||||||
|
@ -470,6 +470,7 @@ export default {
|
|||||||
},
|
},
|
||||||
// 选择脚本
|
// 选择脚本
|
||||||
async selectQuest(row, id) {
|
async selectQuest(row, id) {
|
||||||
|
try {
|
||||||
const res = await loadScript(row.id, id, this.group);
|
const res = await loadScript(row.id, id, this.group);
|
||||||
if (res && res.code == 200) {
|
if (res && res.code == 200) {
|
||||||
this.questId = parseInt(row.id);
|
this.questId = parseInt(row.id);
|
||||||
@ -486,6 +487,9 @@ export default {
|
|||||||
if (this.$refs.menuScript) {
|
if (this.$refs.menuScript) {
|
||||||
this.$refs.menuScript.initLoadPage();
|
this.$refs.menuScript.initLoadPage();
|
||||||
}
|
}
|
||||||
|
} catch (error) {
|
||||||
|
this.$messageBox(error.message);
|
||||||
|
}
|
||||||
},
|
},
|
||||||
// 退出脚本
|
// 退出脚本
|
||||||
async quitQuest() {
|
async quitQuest() {
|
||||||
|
@ -328,7 +328,6 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
async mounted() {
|
async mounted() {
|
||||||
this.getRoomState();
|
|
||||||
this.userId = this.$store.state.user.id;
|
this.userId = this.$store.state.user.id;
|
||||||
this.getRoomInfo(); // 获取房间信息 info
|
this.getRoomInfo(); // 获取房间信息 info
|
||||||
this.getUserList(); // 房间人员 列表
|
this.getUserList(); // 房间人员 列表
|
||||||
@ -364,15 +363,6 @@ export default {
|
|||||||
}
|
}
|
||||||
this.$store.dispatch('socket/setJointRoomInfo'); // 清空房间信息
|
this.$store.dispatch('socket/setJointRoomInfo'); // 清空房间信息
|
||||||
},
|
},
|
||||||
// 获取房间状态
|
|
||||||
async getRoomState() {
|
|
||||||
const res = await postRoomDetail(this.$route.query.group);
|
|
||||||
this.mapId = res.data.mapId;
|
|
||||||
this.starting = false;
|
|
||||||
if (res.data.state == '02') {
|
|
||||||
this.starting = true;
|
|
||||||
}
|
|
||||||
},
|
|
||||||
// 右键点击观众席
|
// 右键点击观众席
|
||||||
showContextMenu(e, obj, node, vueElem) {
|
showContextMenu(e, obj, node, vueElem) {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
@ -503,6 +493,9 @@ export default {
|
|||||||
async getRoomInfo() {
|
async getRoomInfo() {
|
||||||
// 获取房间信息 创建人和权限总数
|
// 获取房间信息 创建人和权限总数
|
||||||
const res = await postRoomDetail(this.$route.query.group);
|
const res = await postRoomDetail(this.$route.query.group);
|
||||||
|
|
||||||
|
this.starting = res.data.state == '02';
|
||||||
|
this.mapId = res.data.mapId;
|
||||||
this.roomInfo = {
|
this.roomInfo = {
|
||||||
creatorId: res.data.creatorId,
|
creatorId: res.data.creatorId,
|
||||||
totalNum: Number(res.data.permissionNum) + Number(res.data.audiencePermissionNum),
|
totalNum: Number(res.data.permissionNum) + Number(res.data.audiencePermissionNum),
|
||||||
|
Loading…
Reference in New Issue
Block a user