Merge branch 'test' of https://git.code.tencent.com/lian-cbtc/jl-client into test
This commit is contained in:
commit
c2d158da5b
@ -143,7 +143,7 @@ export function loadDraftScript(scriptId, memberId, group) {
|
|||||||
export function loadDraftScriptNew(memberId, group) {
|
export function loadDraftScriptNew(memberId, group) {
|
||||||
return request({
|
return request({
|
||||||
// url: `/simulation/${group}/choosePlay?memberId=${memberId}`,
|
// url: `/simulation/${group}/choosePlay?memberId=${memberId}`,
|
||||||
url: `/api/scriptSimulation/${group}/chooseMember/${memberId}/StartScript`,
|
url: `/api/scriptSimulation/${group}/chooseMemberAndStart?memberId=${memberId}`,
|
||||||
method: 'put'
|
method: 'put'
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -16,7 +16,7 @@ if(BASE_API == "https://test.joylink.club/jlcloud"){
|
|||||||
asseturl = "https://test.joylink.club/oss/joylink"
|
asseturl = "https://test.joylink.club/oss/joylink"
|
||||||
}
|
}
|
||||||
const BASE_UPLOAD_API = uploadurl;
|
const BASE_UPLOAD_API = uploadurl;
|
||||||
const BASE_ASSET_API = asseturl;
|
export const BASE_ASSET_API = asseturl;
|
||||||
|
|
||||||
export function getUploadModelUrl() {
|
export function getUploadModelUrl() {
|
||||||
return (BASE_UPLOAD_API+"/api/upload/MODEL?appId=00001&appSecret=joylink00001");
|
return (BASE_UPLOAD_API+"/api/upload/MODEL?appId=00001&appSecret=joylink00001");
|
||||||
|
@ -75,9 +75,9 @@ export function getPublish3dMapDetail(id) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/** 更新地图3d数据*/
|
/** 更新地图3d数据*/
|
||||||
export function tuoguan3ddrive(group,on,data) {
|
export function tuoguan3ddrive(group,data) {
|
||||||
return request({
|
return request({
|
||||||
url: `/api/scriptSimulation/${group}/trust?on=${on}`,
|
url: `/api/scriptSimulation/${group}/trust`,
|
||||||
method: 'put',
|
method: 'put',
|
||||||
data: data
|
data: data
|
||||||
});
|
});
|
||||||
|
BIN
src/assets/icon/favicon_bxkc.png
Normal file
BIN
src/assets/icon/favicon_bxkc.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 79 KiB |
BIN
src/assets/icon/link_bxkc.png
Normal file
BIN
src/assets/icon/link_bxkc.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 47 KiB |
@ -126,6 +126,7 @@ export function Jlmap3ddata(mapid,scope){
|
|||||||
assetloader.setmodellistnew(netdata.assets,5);
|
assetloader.setmodellistnew(netdata.assets,5);
|
||||||
assetloader.assetpromise(scene)
|
assetloader.assetpromise(scene)
|
||||||
.then(function(data){
|
.then(function(data){
|
||||||
|
console.log(assetloader);
|
||||||
// return jlmap3ddata.stationstandlist.initpromise(jlmap3ddata,mapdata.stationList,mapdata.stationStandList,scene,assetloader);
|
// return jlmap3ddata.stationstandlist.initpromise(jlmap3ddata,mapdata.stationList,mapdata.stationStandList,scene,assetloader);
|
||||||
return jlmap3ddata.stationstandlist.loadpromise(jlmap3ddata,standsdata,mapdata.stationStandList,scene,assetloader);
|
return jlmap3ddata.stationstandlist.loadpromise(jlmap3ddata,standsdata,mapdata.stationStandList,scene,assetloader);
|
||||||
})
|
})
|
||||||
|
@ -102,13 +102,13 @@ export function getmodels(data) {
|
|||||||
deviceType:"suidaobg",
|
deviceType:"suidaobg",
|
||||||
type:"nbsuidao",
|
type:"nbsuidao",
|
||||||
picUrl:"",
|
picUrl:"",
|
||||||
assetUrl:"../../static/model/suidao/suidao.FBX"
|
assetUrl:"../../static/model/suidao/xiansuidao.FBX"
|
||||||
}
|
}
|
||||||
assets.push(backgroundmodel);
|
assets.push(backgroundmodel);
|
||||||
|
|
||||||
models.assets = assets;
|
models.assets = assets;
|
||||||
models.stationtexture = "fz1";
|
models.stationtexture = "xian3";
|
||||||
models.istexture = false;
|
models.istexture = true;
|
||||||
console.log(models);
|
console.log(models);
|
||||||
postmap.assets = JSON.stringify(models);
|
postmap.assets = JSON.stringify(models);
|
||||||
//link轨道
|
//link轨道
|
||||||
|
@ -104,7 +104,13 @@ export function Jl3dDrivingNew(mixers,updatemmi,sound,translation,routegroup,sta
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if(data.type == "Train_Hmi_3D"){
|
if(data.type == "Train_Hmi_3D"){
|
||||||
|
console.log(data);
|
||||||
updatestatus(data.body);
|
updatestatus(data.body);
|
||||||
|
if(data.body.trust == '1'){
|
||||||
|
updateDriverTrust(data.body.code,true);
|
||||||
|
}else{
|
||||||
|
updateDriverTrust(data.body.code,false);
|
||||||
|
}
|
||||||
// trainhmi(data.body);
|
// trainhmi(data.body);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@ export function AssetModel(data){
|
|||||||
|
|
||||||
let scope = this;
|
let scope = this;
|
||||||
|
|
||||||
|
|
||||||
this.id = data.id;
|
this.id = data.id;
|
||||||
|
|
||||||
this.name = data.name;
|
this.name = data.name;
|
||||||
@ -10,10 +11,14 @@ export function AssetModel(data){
|
|||||||
|
|
||||||
this.type = data.type;
|
this.type = data.type;
|
||||||
|
|
||||||
|
this.type = null;
|
||||||
|
|
||||||
this.assetUrl = data.assetUrl;
|
this.assetUrl = data.assetUrl;
|
||||||
|
|
||||||
this.mesh = null;
|
this.mesh = null;
|
||||||
|
|
||||||
|
this.mesh = null;
|
||||||
|
|
||||||
this.animate = null;
|
this.animate = null;
|
||||||
|
|
||||||
this.create = function(){
|
this.create = function(){
|
||||||
|
@ -8,6 +8,8 @@ import FaviconJyd from '@/assets/icon/favicon_jyd.png';
|
|||||||
import Bottom_Jyd from '@/assets/icon/bottom_jyd.png';
|
import Bottom_Jyd from '@/assets/icon/bottom_jyd.png';
|
||||||
import Link_Jyd from '@/assets/icon/link_jyd.png';
|
import Link_Jyd from '@/assets/icon/link_jyd.png';
|
||||||
import FaviconTky from '@/assets/icon/favicon_tky.png';
|
import FaviconTky from '@/assets/icon/favicon_tky.png';
|
||||||
|
import FaviconBxkc from '@/assets/icon/favicon_bxkc.png';
|
||||||
|
import Link_Bxkc from '@/assets/icon/link_bxkc.png';
|
||||||
// import { LoginParams } from '@/utils/login';
|
// import { LoginParams } from '@/utils/login';
|
||||||
|
|
||||||
// title:页面title; loginPath:退出登录跳转路径; loginParam:登录接口参数project;loginTitle:登录页左上角title;logoWidth:登录页左上角logo宽度;
|
// title:页面title; loginPath:退出登录跳转路径; loginParam:登录接口参数project;loginTitle:登录页左上角title;logoWidth:登录页左上角logo宽度;
|
||||||
@ -154,6 +156,30 @@ export const loginInfo = {
|
|||||||
loginParam: 'DEFAULT',
|
loginParam: 'DEFAULT',
|
||||||
navigationLogoWidth: '75px',
|
navigationLogoWidth: '75px',
|
||||||
navigationMarginLeft: '90px'
|
navigationMarginLeft: '90px'
|
||||||
|
},
|
||||||
|
bxkc: {
|
||||||
|
title: '城市轨道交通实训平台',
|
||||||
|
loginPath: '/login?project=bxkc',
|
||||||
|
loginTitle: '空串',
|
||||||
|
logoWidth: '400px',
|
||||||
|
bottomIcon: FaviconBxkc,
|
||||||
|
bottomColumn: '',
|
||||||
|
linkIcon: Link_Bxkc,
|
||||||
|
loginParam: 'DEFAULT',
|
||||||
|
navigationLogoWidth: '160px',
|
||||||
|
navigationMarginLeft: '175px'
|
||||||
|
},
|
||||||
|
designbxkc: {
|
||||||
|
title: '城市轨道交通设计平台',
|
||||||
|
loginPath: '/design/login?project=bxkc',
|
||||||
|
loginTitle: '空串',
|
||||||
|
logoWidth: '400px',
|
||||||
|
bottomIcon: FaviconBxkc,
|
||||||
|
bottomColumn: '',
|
||||||
|
linkIcon: Link_Bxkc,
|
||||||
|
loginParam: 'DEFAULT',
|
||||||
|
navigationLogoWidth: '160px',
|
||||||
|
navigationMarginLeft: '175px'
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -173,7 +199,9 @@ export const ProjectIcon = {
|
|||||||
jyd: FaviconJyd,
|
jyd: FaviconJyd,
|
||||||
designjyd: FaviconJyd,
|
designjyd: FaviconJyd,
|
||||||
tky: FaviconTky,
|
tky: FaviconTky,
|
||||||
designtky: FaviconTky
|
designtky: FaviconTky,
|
||||||
|
bxkc: FaviconBxkc,
|
||||||
|
designbxkc: FaviconBxkc
|
||||||
};
|
};
|
||||||
|
|
||||||
export const ProjectCode = {
|
export const ProjectCode = {
|
||||||
@ -188,15 +216,17 @@ export const ProjectCode = {
|
|||||||
jyd: 'JYD',
|
jyd: 'JYD',
|
||||||
designjyd: 'JYD',
|
designjyd: 'JYD',
|
||||||
tky: 'TKY',
|
tky: 'TKY',
|
||||||
designtky: 'TKY'
|
designtky: 'TKY',
|
||||||
|
bxkc: 'BXKC',
|
||||||
|
designbxkc: 'BXKC'
|
||||||
};
|
};
|
||||||
export const BottomColumnOnlyConInfo = ['heb', 'designheb', 'jyd', 'designjyd', 'tky', 'designtky']; // 底部栏仅展示公司信息不展示备案号
|
export const BottomColumnOnlyConInfo = ['heb', 'designheb', 'jyd', 'designjyd', 'tky', 'designtky', 'bxkc', 'designbxkc']; // 底部栏仅展示公司信息不展示备案号
|
||||||
export const GetMapListByProjectList = ['xty', 'designxty', 'gzb', 'designgzb', 'xadt', 'designxadt', 'heb', 'designheb']; // 实训设计平台通过项目code获取地图列表的项目
|
export const GetMapListByProjectList = ['xty', 'designxty', 'gzb', 'designgzb', 'xadt', 'designxadt', 'heb', 'designheb']; // 实训设计平台通过项目code获取地图列表的项目
|
||||||
export const CaseHideProjectList = ['heb', 'designheb']; // 案例展示隐藏的项目
|
export const CaseHideProjectList = ['heb', 'designheb']; // 案例展示隐藏的项目
|
||||||
export const VersionBaseNoShow = ['heb', 'designheb']; // 登录页右下角版本开发基于不展示
|
export const VersionBaseNoShow = ['heb', 'designheb']; // 登录页右下角版本开发基于不展示
|
||||||
export const MainBodyNoShow = ['heb', 'designheb', 'jyd', 'designjyd', 'tky', 'designtky']; // 登录页右下角主体不展示
|
export const MainBodyNoShow = ['heb', 'designheb', 'jyd', 'designjyd', 'tky', 'designtky', 'bxkc', 'designbxkc']; // 登录页右下角主体不展示
|
||||||
export const GenerateRouteProjectList = ['jsxt', 'refereeJsxt'];// 需要在公共路由中生成登录页面的项目
|
export const GenerateRouteProjectList = ['jsxt', 'refereeJsxt'];// 需要在公共路由中生成登录页面的项目
|
||||||
export const ProjectLoginStyleList = ['jsxt', 'refereeJsxt', 'gzb', 'designgzb', 'xty', 'designxty', 'xadt', 'designxadt', 'tky', 'designtky', 'jyd', 'designjyd']; // 登录页样式
|
export const ProjectLoginStyleList = ['jsxt', 'refereeJsxt', 'gzb', 'designgzb', 'xty', 'designxty', 'xadt', 'designxadt', 'tky', 'designtky', 'jyd', 'designjyd', 'bxkc', 'designbxkc']; // 登录页样式
|
||||||
export const goOtherPlatformMenu = { // 导航栏快速切换平台
|
export const goOtherPlatformMenu = { // 导航栏快速切换平台
|
||||||
login: '/design/login',
|
login: '/design/login',
|
||||||
design: '/login',
|
design: '/login',
|
||||||
@ -211,9 +241,11 @@ export const goOtherPlatformMenu = { // 导航栏快速切换平台
|
|||||||
jyd: '/design/login?project=jyd',
|
jyd: '/design/login?project=jyd',
|
||||||
designjyd: '/login?project=jyd',
|
designjyd: '/login?project=jyd',
|
||||||
tky: '/design/login?project=tky',
|
tky: '/design/login?project=tky',
|
||||||
designtky: '/login?project=tky'
|
designtky: '/login?project=tky',
|
||||||
|
bxkc: '/design/login?project=bxkc',
|
||||||
|
designbxkc: '/login?project=bxkc'
|
||||||
};
|
};
|
||||||
export const PermissionParam = { // 路径权限处理所需参数配置(跳转白名单&路径正则匹配&clientId)
|
export const PermissionParam = { // 路径权限处理所需参数配置(跳转白名单,路由处理类型)
|
||||||
heb: {
|
heb: {
|
||||||
whitePage: '/login?project=heb',
|
whitePage: '/login?project=heb',
|
||||||
systemType: '019'
|
systemType: '019'
|
||||||
@ -232,75 +264,59 @@ export const PermissionParam = { // 路径权限处理所需参数配置(跳
|
|||||||
},
|
},
|
||||||
designxty: {
|
designxty: {
|
||||||
whitePage: '/design/login?project=xty',
|
whitePage: '/design/login?project=xty',
|
||||||
// reg: /^\/designxty/,
|
|
||||||
systemType: '013'
|
systemType: '013'
|
||||||
// clientId: LoginParams.Design.clientId
|
|
||||||
},
|
},
|
||||||
designgzb: {
|
designgzb: {
|
||||||
whitePage: '/design/login?project=gzb',
|
whitePage: '/design/login?project=gzb',
|
||||||
// reg: /^\/designgzb/,
|
|
||||||
systemType: '014'
|
systemType: '014'
|
||||||
// clientId: LoginParams.Design.clientId
|
|
||||||
},
|
},
|
||||||
designxadt: {
|
designxadt: {
|
||||||
whitePage: '/design/login?project=xadt',
|
whitePage: '/design/login?project=xadt',
|
||||||
// reg: /^\/designxadt/,
|
|
||||||
systemType: '012'
|
systemType: '012'
|
||||||
// clientId: LoginParams.Design.clientId
|
|
||||||
},
|
},
|
||||||
designjyd: {
|
designjyd: {
|
||||||
whitePage: '/design/login?project=jyd',
|
whitePage: '/design/login?project=jyd',
|
||||||
// reg: /^\/designjyd/,
|
|
||||||
systemType: '017'
|
systemType: '017'
|
||||||
// clientId: LoginParams.Design.clientId
|
|
||||||
},
|
},
|
||||||
designtky: {
|
designtky: {
|
||||||
whitePage: '/design/login?project=tky',
|
whitePage: '/design/login?project=tky',
|
||||||
// reg: /^\/designtky/,
|
|
||||||
systemType: '018'
|
systemType: '018'
|
||||||
// clientId: LoginParams.Design.clientId
|
},
|
||||||
|
designbxkc: {
|
||||||
|
whitePage: '/design/login?project=bxkc',
|
||||||
|
systemType: '011'
|
||||||
},
|
},
|
||||||
xty: {
|
xty: {
|
||||||
whitePage: '/login?project=xty',
|
whitePage: '/login?project=xty',
|
||||||
// reg: /^\/xty/,
|
|
||||||
systemType: '013'
|
systemType: '013'
|
||||||
// clientId: null
|
|
||||||
},
|
},
|
||||||
gzb: {
|
gzb: {
|
||||||
whitePage: '/login?project=gzb',
|
whitePage: '/login?project=gzb',
|
||||||
// reg: /^\/gzb/,
|
|
||||||
systemType: '014'
|
systemType: '014'
|
||||||
// clientId: null
|
|
||||||
},
|
},
|
||||||
xadt: {
|
xadt: {
|
||||||
whitePage: '/login?project=xadt',
|
whitePage: '/login?project=xadt',
|
||||||
// reg: /^\/xadt/,
|
|
||||||
systemType: '012'
|
systemType: '012'
|
||||||
// clientId: null
|
|
||||||
},
|
},
|
||||||
jyd: {
|
jyd: {
|
||||||
whitePage: '/login?project=jyd',
|
whitePage: '/login?project=jyd',
|
||||||
// reg: /^\/jyd/,
|
|
||||||
systemType: '017'
|
systemType: '017'
|
||||||
// clientId: null
|
|
||||||
},
|
},
|
||||||
tky: {
|
tky: {
|
||||||
whitePage: '/login?project=tky',
|
whitePage: '/login?project=tky',
|
||||||
// reg: /^\/tky/,
|
|
||||||
systemType: '018'
|
systemType: '018'
|
||||||
// clientId: null
|
},
|
||||||
|
bxkc: {
|
||||||
|
whitePage: '/login?project=bxkc',
|
||||||
|
systemType: '011'
|
||||||
},
|
},
|
||||||
jsxt: {
|
jsxt: {
|
||||||
whitePage: '/jsxt/login',
|
whitePage: '/jsxt/login',
|
||||||
// reg: /^\/jsxt/,
|
|
||||||
systemType: '015'
|
systemType: '015'
|
||||||
// clientId: null
|
|
||||||
},
|
},
|
||||||
refereeJsxt: {
|
refereeJsxt: {
|
||||||
whitePage: '/refereeJsxt/login',
|
whitePage: '/refereeJsxt/login',
|
||||||
// reg: /^\/refereeJsxt/,
|
|
||||||
systemType: '015'
|
systemType: '015'
|
||||||
// clientId: LoginParams.Design.clientId
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
export const ProjectList = [
|
export const ProjectList = [
|
||||||
|
@ -228,10 +228,17 @@ const training = {
|
|||||||
setSimulationUserList: (state, simulationUserList) => {
|
setSimulationUserList: (state, simulationUserList) => {
|
||||||
state.simulationUserList = simulationUserList;
|
state.simulationUserList = simulationUserList;
|
||||||
},
|
},
|
||||||
|
updateMemberTrust:(state, {deviceCode,trust}) => {
|
||||||
|
for(let k in state.memberData){
|
||||||
|
if(state.memberData[k].deviceCode == deviceCode){
|
||||||
|
state.memberData[k].trust = trust;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
updateMemberListInScript:(state, {oldMemberId, newMemberId, userId, name}) => {
|
updateMemberListInScript:(state, {oldMemberId, newMemberId, userId, name}) => {
|
||||||
if (oldMemberId) {
|
if (oldMemberId) {
|
||||||
// 重置旧数据
|
// 重置旧数据
|
||||||
state.memberData[oldMemberId].trust = false;
|
|
||||||
delete state.memberData[oldMemberId].userId;
|
delete state.memberData[oldMemberId].userId;
|
||||||
delete state.memberData[oldMemberId].name;
|
delete state.memberData[oldMemberId].name;
|
||||||
state.memberData[oldMemberId].disabled = false;
|
state.memberData[oldMemberId].disabled = false;
|
||||||
@ -240,7 +247,6 @@ const training = {
|
|||||||
state.memberData[newMemberId].userId = userId;
|
state.memberData[newMemberId].userId = userId;
|
||||||
state.memberData[newMemberId].name = name;
|
state.memberData[newMemberId].name = name;
|
||||||
state.memberData[newMemberId].disabled = true;
|
state.memberData[newMemberId].disabled = true;
|
||||||
state.memberData[newMemberId].trust = true;
|
|
||||||
},
|
},
|
||||||
|
|
||||||
updateMemberAndUser: (state, {simulationUserList, userId}) => {
|
updateMemberAndUser: (state, {simulationUserList, userId}) => {
|
||||||
@ -679,6 +685,9 @@ const training = {
|
|||||||
setSimulationUserList: ({ commit }, simulationUserList) => {
|
setSimulationUserList: ({ commit }, simulationUserList) => {
|
||||||
commit('setSimulationUserList', simulationUserList);
|
commit('setSimulationUserList', simulationUserList);
|
||||||
},
|
},
|
||||||
|
updateMemberTrust:({ commit }, data) => {
|
||||||
|
commit('updateMemberTrust', data);
|
||||||
|
},
|
||||||
/** 更新综合演练仿真成员和用户列表 */
|
/** 更新综合演练仿真成员和用户列表 */
|
||||||
updateMemberAndUser: ({ commit }, data) => {
|
updateMemberAndUser: ({ commit }, data) => {
|
||||||
commit('updateMemberAndUser', data);
|
commit('updateMemberAndUser', data);
|
||||||
|
@ -92,14 +92,14 @@ import axios from 'axios';
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
'$store.state.training.memberData':{
|
// '$store.state.training.memberData':{
|
||||||
handler(val){
|
// handler(val){
|
||||||
if(this.tuoguanbutton == true){
|
// if(this.tuoguanbutton == true){
|
||||||
console.log(val);
|
// console.log(val);
|
||||||
}
|
// }
|
||||||
},
|
// },
|
||||||
deep:true //true 深度监听
|
// deep:true //true 深度监听
|
||||||
}
|
// }
|
||||||
|
|
||||||
},
|
},
|
||||||
onLoad(e) {
|
onLoad(e) {
|
||||||
@ -118,12 +118,15 @@ import axios from 'axios';
|
|||||||
async mounted() {
|
async mounted() {
|
||||||
if(this.$route.query.group){
|
if(this.$route.query.group){
|
||||||
getSimulationInfoNew(this.$route.query.group).then(netdata => {
|
getSimulationInfoNew(this.$route.query.group).then(netdata => {
|
||||||
|
console.log(netdata);
|
||||||
if(netdata.data.type == "SCRIPT_MAKING"){
|
if(netdata.data.type == "SCRIPT_MAKING"){
|
||||||
this.tuoguanbutton = true;
|
this.tuoguanbutton = true;
|
||||||
}
|
}
|
||||||
this.updatetrainlist();
|
this.updatetrainlist();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
window.updateDriverTrust = this.updateDriverTrust;
|
||||||
// this.teststomp = new StompClient();
|
// this.teststomp = new StompClient();
|
||||||
|
|
||||||
|
|
||||||
@ -167,7 +170,8 @@ import axios from 'axios';
|
|||||||
}else{
|
}else{
|
||||||
posttrust = true;
|
posttrust = true;
|
||||||
}
|
}
|
||||||
tuoguan3ddrive(this.$route.query.group,posttrust,{}).then(netdata => {
|
|
||||||
|
tuoguan3ddrive(this.$route.query.group,{}).then(netdata => {
|
||||||
// this.$store.dispatch('training/updateMemberListInScript', {oldMemberId:this.oldMemberId, newMemberId:role, userId:this.userId});
|
// this.$store.dispatch('training/updateMemberListInScript', {oldMemberId:this.oldMemberId, newMemberId:role, userId:this.userId});
|
||||||
this.tuoguanstatus = posttrust;
|
this.tuoguanstatus = posttrust;
|
||||||
if(this.tuoguanstatus){
|
if(this.tuoguanstatus){
|
||||||
@ -178,6 +182,20 @@ import axios from 'axios';
|
|||||||
}).catch((error) => {
|
}).catch((error) => {
|
||||||
|
|
||||||
});
|
});
|
||||||
|
},
|
||||||
|
updateDriverTrust(code,trustStatus){
|
||||||
|
if(this.tuoguanstatus != trustStatus){
|
||||||
|
this.tuoguanstatus = trustStatus;
|
||||||
|
if(this.tuoguanstatus){
|
||||||
|
this.tuoguanbuttonmsg = "取消托管";
|
||||||
|
}else{
|
||||||
|
this.tuoguanbuttonmsg = "托管";
|
||||||
|
}
|
||||||
|
this.$store.dispatch('training/updateMemberTrust', {deviceCode:code,trust:trustStatus});
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
},
|
},
|
||||||
updatetrainlist(){
|
updatetrainlist(){
|
||||||
getSimulationTrainlistNew(this.group).then(netdata => {
|
getSimulationTrainlistNew(this.group).then(netdata => {
|
||||||
@ -241,8 +259,9 @@ import axios from 'axios';
|
|||||||
console.log(netdata);
|
console.log(netdata);
|
||||||
for(let k in netdata){
|
for(let k in netdata){
|
||||||
if(netdata[k].userId == this.userId){
|
if(netdata[k].userId == this.userId){
|
||||||
console.log(this.$store.state.scriptRecord.userRole);
|
console.log("=================");
|
||||||
this.userrole = this.$store.state.scriptRecord.userRole;
|
// console.log(this.$store.state.scriptRecord.type);
|
||||||
|
this.userrole = netdata[k].type;
|
||||||
console.log(netdata[k].trust);
|
console.log(netdata[k].trust);
|
||||||
if(netdata[k].trust){
|
if(netdata[k].trust){
|
||||||
this.tuoguanstatus = netdata[k].trust;
|
this.tuoguanstatus = netdata[k].trust;
|
||||||
|
@ -202,14 +202,14 @@
|
|||||||
console.log(this.jlmap3dedit.assetManager);
|
console.log(this.jlmap3dedit.assetManager);
|
||||||
|
|
||||||
let param = testgetmodels(this.jlmap3dedit);
|
let param = testgetmodels(this.jlmap3dedit);
|
||||||
// update3dMapData(param).then(data => {
|
update3dMapData(param).then(data => {
|
||||||
// //console.log(data);
|
//console.log(data);
|
||||||
// if (data.code == "200") {
|
if (data.code == "200") {
|
||||||
// alert("保存成功");
|
alert("保存成功");
|
||||||
// }
|
}
|
||||||
// }).catch(error => {
|
}).catch(error => {
|
||||||
// console.log(error);
|
console.log(error);
|
||||||
// });
|
});
|
||||||
},
|
},
|
||||||
back() {
|
back() {
|
||||||
|
|
||||||
|
@ -25,9 +25,8 @@ import ChatBox from './chatView/chatBox';
|
|||||||
import TipScriptRecordNew from '@/views/scriptManage/display/tipScriptRecordNew';
|
import TipScriptRecordNew from '@/views/scriptManage/display/tipScriptRecordNew';
|
||||||
import SetTime from './demon/setTime';
|
import SetTime from './demon/setTime';
|
||||||
import { Notification } from 'element-ui';
|
import { Notification } from 'element-ui';
|
||||||
import { ranAsPlan, exitRunPlan } from '@/api/simulation';
|
import { ranAsPlan, exitRunPlan, clearSimulation } from '@/api/simulation';
|
||||||
// import { timeFormat } from '@/utils/date';
|
// import { timeFormat } from '@/utils/date';
|
||||||
import { EventBus } from '@/scripts/event-bus';
|
|
||||||
import { mapGetters } from 'vuex';
|
import { mapGetters } from 'vuex';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
@ -52,19 +51,8 @@ export default {
|
|||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
isDisable: false,
|
isDisable: false,
|
||||||
tryTime: 0, // 进入页面多少秒
|
isScriptCommand:false
|
||||||
timeNow: 0, // 进入页面 相对时间
|
|
||||||
time: null, // 定时器
|
|
||||||
countTime: 0, // 显示 倒计时
|
|
||||||
remainingTime: 0,
|
|
||||||
isScriptCommand:false,
|
|
||||||
goodsId: this.$route.query.goodsId,
|
|
||||||
// isSaveStage: true,
|
// isSaveStage: true,
|
||||||
training: {
|
|
||||||
id: '',
|
|
||||||
name: '',
|
|
||||||
remarks: ''
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
@ -90,10 +78,6 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
beforeDestroy() {
|
beforeDestroy() {
|
||||||
if (this.time) {
|
|
||||||
this.setTryTime();
|
|
||||||
clearTimeout(this.time);
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
// this.$store.state.training.prdType
|
// this.$store.state.training.prdType
|
||||||
@ -178,16 +162,9 @@ export default {
|
|||||||
this.$messageBox(this.$t('display.demon.endSimulationFail'));
|
this.$messageBox(this.$t('display.demon.endSimulationFail'));
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
setTryTime() {
|
|
||||||
if (this.try) {
|
|
||||||
this.$emit('tryTime', { time: this.tryTime, goodsId: this.goodsId });
|
|
||||||
}
|
|
||||||
},
|
|
||||||
back() {
|
back() {
|
||||||
this.$store.dispatch('training/over').then(() => {
|
this.$store.dispatch('training/over').then(() => {
|
||||||
EventBus.$emit('runPlanStop');
|
|
||||||
this.$store.dispatch('map/resetActiveTrainList');
|
this.$store.dispatch('map/resetActiveTrainList');
|
||||||
EventBus.$emit('chatSubscribeStop');
|
|
||||||
history.go(-1);
|
history.go(-1);
|
||||||
Notification.closeAll();
|
Notification.closeAll();
|
||||||
});
|
});
|
||||||
|
@ -146,7 +146,7 @@ export default {
|
|||||||
memberIdList: [],
|
memberIdList: [],
|
||||||
quitLoading: false,
|
quitLoading: false,
|
||||||
conversitionMemberList: [],
|
conversitionMemberList: [],
|
||||||
isConversitionCreator: true,
|
isConversitionCreator: false,
|
||||||
messageList: []
|
messageList: []
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
@ -203,7 +203,8 @@ export default {
|
|||||||
this.$refs.tree.filter(this.queryMember);
|
this.$refs.tree.filter(this.queryMember);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
'$store.state.training.simulationUserList': function(val) {
|
'$store.state.training.simulationUserList': {
|
||||||
|
handler(val, o) {
|
||||||
this.simulationUsers = {};
|
this.simulationUsers = {};
|
||||||
if (val && val.length) {
|
if (val && val.length) {
|
||||||
val.forEach(user => {
|
val.forEach(user => {
|
||||||
@ -211,6 +212,8 @@ export default {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
deep: true
|
||||||
|
},
|
||||||
'$store.state.socket.overConversition': function (val) {
|
'$store.state.socket.overConversition': function (val) {
|
||||||
this.conversitionId = '';
|
this.conversitionId = '';
|
||||||
this.conversitionMemberList = [];
|
this.conversitionMemberList = [];
|
||||||
@ -529,6 +532,7 @@ export default {
|
|||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
const user = this.simulationUsers[this.$store.state.user.id];
|
const user = this.simulationUsers[this.$store.state.user.id];
|
||||||
|
this.isConversitionCreator = conversation.creatorId == user.memberId;
|
||||||
!conversation.over && conversation.memberList.forEach(member =>{
|
!conversation.over && conversation.memberList.forEach(member =>{
|
||||||
if (member.memberId == user.memberId) {
|
if (member.memberId == user.memberId) {
|
||||||
this.conversitionMemberList = conversation.memberList;
|
this.conversitionMemberList = conversation.memberList;
|
||||||
|
@ -7,8 +7,8 @@
|
|||||||
:key="member.memberId"
|
:key="member.memberId"
|
||||||
class="each-chat-member"
|
class="each-chat-member"
|
||||||
:style="computedStyle(member)"
|
:style="computedStyle(member)"
|
||||||
:title="memberData[member.memberId].label + (memberData[member.memberId].userId? '(' + simulationUsers[memberData[member.memberId].userId].nickName + ')': '')"
|
:title="memberData[member.memberId].label + (memberData[member.memberId].userId? '(' + (simulationUsers[memberData[member.memberId].userId] || {}).nickName + ')': '')"
|
||||||
>{{ memberData[member.memberId].label + (memberData[member.memberId].userId? '(' + simulationUsers[memberData[member.memberId].userId].nickName + ')': '') }}</div>
|
>{{ memberData[member.memberId].label + (memberData[member.memberId].userId? '(' + (simulationUsers[memberData[member.memberId].userId] || {}).nickName + ')': '') }}</div>
|
||||||
<!-- :class="member.online?'each-chat-member':'each-chat-member each-chat-member-outline'" -->
|
<!-- :class="member.online?'each-chat-member':'each-chat-member each-chat-member-outline'" -->
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -162,6 +162,7 @@ export default {
|
|||||||
switchMode(role) {
|
switchMode(role) {
|
||||||
changeScriptRole(this.group, role).then(res=>{
|
changeScriptRole(this.group, role).then(res=>{
|
||||||
let prdType = '';
|
let prdType = '';
|
||||||
|
|
||||||
const memberInfo = this.memberList.find(member=>{
|
const memberInfo = this.memberList.find(member=>{
|
||||||
return member.id == role;
|
return member.id == role;
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user