剧本代码调整
This commit is contained in:
parent
4fb17151df
commit
584654daec
@ -5,8 +5,8 @@ export function getBaseUrl() {
|
|||||||
// 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.41:9000'; // 张赛
|
BASE_API = 'http://192.168.3.41:9000'; // 张赛
|
||||||
BASE_API = 'http://192.168.3.82:9000'; // 杜康
|
// BASE_API = 'http://192.168.3.82:9000'; // 杜康
|
||||||
// BASE_API = 'http://b29z135112.zicp.vip';
|
// BASE_API = 'http://b29z135112.zicp.vip';
|
||||||
// BASE_API = 'http://2925963m2a.zicp.vip'; // 杜康
|
// BASE_API = 'http://2925963m2a.zicp.vip'; // 杜康
|
||||||
// BASE_API = 'http://2i38984j47.qicp.vip'; // 张赛
|
// BASE_API = 'http://2i38984j47.qicp.vip'; // 张赛
|
||||||
|
@ -53,7 +53,9 @@
|
|||||||
<script>
|
<script>
|
||||||
import Cookies from 'js-cookie';
|
import Cookies from 'js-cookie';
|
||||||
import ConstConfig from '@/scripts/ConstConfig';
|
import ConstConfig from '@/scripts/ConstConfig';
|
||||||
import {getScriptPageListOnlineNew, getScriptByIdNew, getDraftScriptByGroupNew } from '@/api/script';
|
// getDraftScriptByGroupNew
|
||||||
|
// import {getScriptMemberDataNew } from '@/api/simulation';
|
||||||
|
import {getScriptPageListOnlineNew, getDraftScriptByGroupNew, getScriptByIdNew } from '@/api/script';
|
||||||
|
|
||||||
// 剧本弹窗
|
// 剧本弹窗
|
||||||
export default {
|
export default {
|
||||||
@ -178,10 +180,10 @@ export default {
|
|||||||
const res = this.$route.fullPath.includes('design/displayNew/demon') ? await getDraftScriptByGroupNew(row.group) : await getScriptByIdNew(row.id);
|
const res = this.$route.fullPath.includes('design/displayNew/demon') ? await getDraftScriptByGroupNew(row.group) : await getScriptByIdNew(row.id);
|
||||||
let newMemberList = [];
|
let newMemberList = [];
|
||||||
if (res.code == 200) {
|
if (res.code == 200) {
|
||||||
if (res.data.playerList && res.data.playerList.length > 0) {
|
if (res.data.memberList && res.data.memberList.length > 0) {
|
||||||
const lastData = JSON.stringify(res.data.playerList);
|
const lastData = JSON.stringify(res.data.memberList);
|
||||||
const playerList = this.covert(lastData, ConstConfig.ConstSelect.roleTypeNew);
|
newMemberList = this.covert(lastData, ConstConfig.ConstSelect.roleTypeNew);
|
||||||
newMemberList = playerList.filter(item => item.hasPlay === true);
|
// newMemberList = playerList.filter(item => item.hasPlay === true);
|
||||||
}
|
}
|
||||||
if (res.data.mapLocation) {
|
if (res.data.mapLocation) {
|
||||||
this.mapLocation = res.data.mapLocation;
|
this.mapLocation = res.data.mapLocation;
|
||||||
|
Loading…
Reference in New Issue
Block a user