2019-07-26 13:32:43 +08:00
|
|
|
<template>
|
2019-10-31 17:30:24 +08:00
|
|
|
<div v-loading="loading" class="joylink-card">
|
|
|
|
<div class="card-title">
|
2019-09-23 17:49:04 +08:00
|
|
|
<span><b>{{ $t('demonstration.simulationName') + courseModel.name }}</b></span>
|
2019-10-17 14:35:10 +08:00
|
|
|
</div>
|
2019-10-31 17:30:24 +08:00
|
|
|
<div class="simulation-detail">
|
2019-10-17 14:35:10 +08:00
|
|
|
<p class="list-item">
|
|
|
|
<span class="list-label">{{ $t('demonstration.productDescription') }}</span>
|
|
|
|
<span class="list-elem">{{ courseModel.remarks }}</span>
|
|
|
|
</p>
|
|
|
|
<p class="list-item">
|
|
|
|
<span class="list-label">{{ $t('global.permissionList') }}</span>
|
|
|
|
</p>
|
2019-12-30 18:14:52 +08:00
|
|
|
<limit-list :ref="`limit`" :course-model="courseModel" @initLoadPage="refresh" />
|
2019-10-17 14:35:10 +08:00
|
|
|
</div>
|
|
|
|
<div class="btn-buy">
|
2020-03-31 15:11:20 +08:00
|
|
|
<el-button v-if="!isLocal" type="success" :disabled="disabled" @click="buy">{{ $t('global.buy') }}</el-button>
|
|
|
|
<el-button v-if="hasPermssion && !isComprehensive && !isLocal" type="primary" :disabled="disabled" @click="distribute">{{ $t('global.distributePermission') }}</el-button>
|
2019-11-25 18:21:56 +08:00
|
|
|
<el-button v-show="isStartDemon" :disabled="disabled" type="primary" @click="start">{{ $t('demonstration.startSimulation') }}</el-button>
|
|
|
|
<el-button v-show="isCreateRoom" :disabled="disabled" type="primary" @click="start">{{ $t('demonstration.createRoom') }}</el-button>
|
|
|
|
<el-button v-show="isInRoom" :disabled="disabled" type="primary" @click="joinRoom">{{ $t('demonstration.enterRoom') }}</el-button>
|
2019-10-17 14:35:10 +08:00
|
|
|
</div>
|
2019-10-31 17:30:24 +08:00
|
|
|
</div>
|
2019-07-26 13:32:43 +08:00
|
|
|
</template>
|
2019-10-31 17:30:24 +08:00
|
|
|
|
2019-07-26 13:32:43 +08:00
|
|
|
<script>
|
2020-03-13 18:19:04 +08:00
|
|
|
import { getPublishMapInfo } from '@/api/jmap/map';
|
2019-08-14 14:01:28 +08:00
|
|
|
import { getGoodsTryUse } from '@/api/management/goods';
|
2020-03-30 13:07:11 +08:00
|
|
|
import { PermissionType, UrlConfig } from '@/scripts/ConstDic';
|
2019-08-14 14:01:28 +08:00
|
|
|
import { launchFullscreen } from '@/utils/screen';
|
2020-03-16 15:29:26 +08:00
|
|
|
import { postCreateRoom, getjointTraining } from '@/api/chat';
|
|
|
|
import { postCreateRoomNew, getjointTrainingNew, checkRoomExistNew } from '@/api/jointTraining';
|
2020-03-30 13:07:11 +08:00
|
|
|
import { } from '@/scripts/ConstDic';
|
2019-12-30 09:00:16 +08:00
|
|
|
import { simulationNotify, schedulingNotify, createSimulationNew } from '@/api/simulation';
|
2019-08-14 14:01:28 +08:00
|
|
|
import LimitList from '@/views/components/limits/index';
|
2019-10-18 17:15:04 +08:00
|
|
|
import { getSubSystemDetail } from '@/api/trainingPlatform';
|
2020-01-14 16:19:36 +08:00
|
|
|
import { getSessionStorage } from '@/utils/auth';
|
2019-07-26 13:32:43 +08:00
|
|
|
|
2019-08-14 14:01:28 +08:00
|
|
|
export default {
|
2019-10-31 17:30:24 +08:00
|
|
|
name: 'ExamDetailList',
|
|
|
|
components: {
|
|
|
|
LimitList
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
tryTime: 0,
|
|
|
|
goodsId: '',
|
|
|
|
tryUser: 0,
|
|
|
|
loading: true,
|
2019-11-25 18:21:56 +08:00
|
|
|
disabled: false,
|
2019-10-31 17:30:24 +08:00
|
|
|
currentLessonId: '',
|
2019-12-27 19:36:29 +08:00
|
|
|
currentPrdType: '',
|
2019-10-31 17:30:24 +08:00
|
|
|
productList: [],
|
|
|
|
courseModel: {
|
|
|
|
id: '',
|
|
|
|
name: '',
|
|
|
|
mapId: '',
|
2019-11-11 18:28:21 +08:00
|
|
|
lineCode: '',
|
2019-10-31 17:30:24 +08:00
|
|
|
remarks: '',
|
|
|
|
prdType: '',
|
|
|
|
pmsList: []
|
|
|
|
},
|
|
|
|
jointShow: false,
|
2019-11-12 13:39:52 +08:00
|
|
|
jointGroup: '',
|
2019-12-26 11:01:54 +08:00
|
|
|
lineCode:'',
|
|
|
|
drawWay: false // 是否新版地图
|
2019-10-31 17:30:24 +08:00
|
|
|
};
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
hasPermssion() {
|
|
|
|
let isShow = false;
|
|
|
|
if (this.courseModel.pmsList && this.courseModel.pmsList.length) {
|
2019-12-30 18:14:52 +08:00
|
|
|
let count = 0;
|
|
|
|
this.courseModel.pmsList.forEach(element => {
|
|
|
|
count += element.remains;
|
|
|
|
});
|
|
|
|
if (count > 0) {
|
|
|
|
isShow = true;
|
|
|
|
}
|
2019-10-31 17:30:24 +08:00
|
|
|
}
|
|
|
|
return isShow;
|
|
|
|
},
|
2020-03-31 15:11:20 +08:00
|
|
|
isLocal() { // 是否为本地项目
|
|
|
|
return process.env.VUE_APP_PRO === 'local';
|
|
|
|
},
|
2019-12-18 11:16:35 +08:00
|
|
|
isComprehensive() {
|
|
|
|
return this.courseModel.prdType === '03';
|
|
|
|
},
|
2019-10-31 17:30:24 +08:00
|
|
|
isStartDemon() {
|
|
|
|
return this.courseModel.prdType !== '03' && (this.hasPermssion || this.tryTime > 0);
|
|
|
|
},
|
|
|
|
isCreateRoom() {
|
|
|
|
return this.courseModel.prdType === '03' && this.hasPermssion && !this.jointShow;
|
|
|
|
},
|
|
|
|
isInRoom() {
|
|
|
|
return this.courseModel.prdType === '03' && this.hasPermssion && this.jointShow;
|
|
|
|
},
|
|
|
|
mapId() {
|
|
|
|
return this.$route.query.mapId;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
watch: {
|
|
|
|
'$route': function (val) {
|
|
|
|
this.loadInitData();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
async mounted() {
|
|
|
|
this.loadInitData();
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
async loadInitData() {
|
|
|
|
this.loading = true;
|
|
|
|
try {
|
2019-11-12 13:39:52 +08:00
|
|
|
const res = await getPublishMapInfo(this.mapId);
|
2019-10-31 17:30:24 +08:00
|
|
|
const resp = await getSubSystemDetail(this.$route.params.subSystem);
|
|
|
|
this.tryUser = 0;
|
|
|
|
this.loading = false;
|
2019-12-30 18:58:23 +08:00
|
|
|
this.drawWay = res.data.drawWay;
|
2020-03-13 13:23:04 +08:00
|
|
|
const remarksList = {'01':'ATS现地工作站原理级仿真实训课程', '02':'ATS行调工作站原理级仿真实训课程', '03':'各岗位应急综合演练', '04':'桌面版模拟驾驶系统', '05':'派班工作站主要是供车辆段/停车场派班员进行派班操作,可以自动生成派班计划,极大的简化了派班计划管理的复杂性', '06': '综合监控管理原理及仿真实训'};
|
2019-12-27 19:36:29 +08:00
|
|
|
this.courseModel = {
|
|
|
|
id: resp.data.id,
|
|
|
|
name: resp.data.name,
|
|
|
|
mapId: this.mapId,
|
|
|
|
lineCode: res.data.lineCode,
|
|
|
|
remarks: remarksList[resp.data.prdType],
|
|
|
|
prdType: resp.data.prdType,
|
|
|
|
pmsList: resp.data.permissionList || [],
|
|
|
|
PermissionType: PermissionType.SIMULATION
|
|
|
|
};
|
|
|
|
this.currentPrdType = resp.data.prdType;
|
|
|
|
if (resp.data.prdType === '03') {
|
|
|
|
this.getJointTrainingList();
|
2019-10-31 17:30:24 +08:00
|
|
|
}
|
|
|
|
if (!this.courseModel.pmsList) {
|
|
|
|
this.tryUser = 1;
|
|
|
|
const paras = {
|
|
|
|
mapId: this.mapId,
|
2019-12-27 18:48:56 +08:00
|
|
|
prdType: this.courseModel.prdType,
|
2019-10-31 17:30:24 +08:00
|
|
|
permissionType: PermissionType.SIMULATION
|
|
|
|
};
|
2019-07-26 13:32:43 +08:00
|
|
|
|
2019-10-31 17:30:24 +08:00
|
|
|
try {
|
|
|
|
const resr = await getGoodsTryUse(paras);
|
|
|
|
if (resr.data.tryTime <= 0) {
|
|
|
|
this.tryTime = 0;
|
|
|
|
} else {
|
|
|
|
this.tryTime = resr.data.tryTime;
|
|
|
|
this.goodsId = resr.data.goodsId;
|
|
|
|
}
|
|
|
|
} catch (error) {
|
|
|
|
this.tryTime = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} catch (error) {
|
|
|
|
this.loading = false;
|
2019-12-27 19:36:29 +08:00
|
|
|
this.$messageBox(this.$t('error.refreshFailed') + error);
|
2019-10-31 17:30:24 +08:00
|
|
|
}
|
|
|
|
},
|
2019-12-30 18:14:52 +08:00
|
|
|
refresh() {
|
|
|
|
this.loadInitData();
|
|
|
|
},
|
2019-10-31 17:30:24 +08:00
|
|
|
async getJointTrainingList() {
|
|
|
|
try {
|
|
|
|
if (this.mapId) {
|
2020-03-16 15:29:26 +08:00
|
|
|
const res = await checkRoomExistNew({mapId: this.mapId});
|
2019-10-31 17:30:24 +08:00
|
|
|
this.jointGroup = res.data;
|
|
|
|
this.jointShow = false;
|
|
|
|
if (res.data) {
|
|
|
|
this.jointShow = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} catch (error) {
|
|
|
|
console.error(error, '获取是否拥有综合演练房间');
|
|
|
|
}
|
|
|
|
},
|
|
|
|
async joinRoom() {
|
2019-11-25 18:21:56 +08:00
|
|
|
this.disabled = true;
|
2020-03-16 15:29:26 +08:00
|
|
|
if (this.drawWay) {
|
|
|
|
await getjointTrainingNew(this.jointGroup);
|
|
|
|
} else {
|
|
|
|
await getjointTraining(this.jointGroup);
|
|
|
|
}
|
2020-01-16 15:08:03 +08:00
|
|
|
this.$store.dispatch('socket/setInRoom', true);
|
2020-01-06 18:39:44 +08:00
|
|
|
const query = { lineCode: this.courseModel.lineCode, group: this.jointGroup, drawWay: this.drawWay};
|
2019-10-31 17:30:24 +08:00
|
|
|
this.$router.push({ path: `/trainroom`, query: query });
|
|
|
|
},
|
|
|
|
async createRoom() {
|
|
|
|
try {
|
2019-11-25 18:21:56 +08:00
|
|
|
this.disabled = true;
|
2019-10-31 17:30:24 +08:00
|
|
|
const param = {
|
|
|
|
mapId: Number(this.mapId),
|
2019-12-27 19:36:29 +08:00
|
|
|
prdType: this.courseModel.prdType
|
2019-10-31 17:30:24 +08:00
|
|
|
};
|
2020-03-16 15:29:26 +08:00
|
|
|
let res = '';
|
|
|
|
if (this.drawWay) {
|
2020-03-23 10:30:23 +08:00
|
|
|
res = await postCreateRoomNew(param);
|
2020-03-16 15:29:26 +08:00
|
|
|
} else {
|
|
|
|
res = await postCreateRoom(param);
|
|
|
|
}
|
2019-10-31 17:30:24 +08:00
|
|
|
if (res && res.code == 200) {
|
2020-01-06 18:39:44 +08:00
|
|
|
const query = { lineCode: this.courseModel.lineCode, group: res.data, drawWay: this.drawWay };
|
2019-10-31 17:30:24 +08:00
|
|
|
this.$router.push({ path: `/trainroom`, query: query });
|
|
|
|
}
|
|
|
|
} catch (error) {
|
2019-11-25 18:21:56 +08:00
|
|
|
this.disabled = false;
|
2019-10-31 17:30:24 +08:00
|
|
|
if (error.code == 20001) {
|
|
|
|
this.$confirm(this.$t('tip.createRoomFailedHint'), this.$t('global.tips'), {
|
|
|
|
confirmButtonText: this.$t('global.confirm'),
|
|
|
|
cancelButtonText: this.$t('global.cancel'),
|
|
|
|
type: 'warning'
|
|
|
|
}).then(() => {}).catch(() => {});
|
|
|
|
}
|
|
|
|
if (error.code == 500009) {
|
|
|
|
this.$messageBox(error.message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2020-03-13 13:23:04 +08:00
|
|
|
async enterISCS() {
|
|
|
|
try {
|
|
|
|
this.disabled = true;
|
|
|
|
const data = { mapId: this.courseModel.mapId, prdType: this.currentPrdType };
|
|
|
|
let res = {};
|
|
|
|
if (!this.drawWay) {
|
|
|
|
res = await simulationNotify(data);
|
|
|
|
} else {
|
|
|
|
res = await createSimulationNew(data);
|
|
|
|
}
|
|
|
|
if (res && res.code == 200) {
|
|
|
|
const query = { group: res.data };
|
|
|
|
this.$router.push({ path: `/displayIscs/system`, query: query });
|
|
|
|
}
|
|
|
|
} catch (error) {
|
|
|
|
this.disabled = false;
|
|
|
|
console.log(error);
|
|
|
|
}
|
|
|
|
},
|
2019-10-31 17:30:24 +08:00
|
|
|
async start() {
|
|
|
|
if (this.courseModel.prdType == '05') {
|
|
|
|
this.jumpScheduling();
|
|
|
|
} else if (this.courseModel.prdType == '03') {
|
|
|
|
this.createRoom();
|
2020-03-13 13:23:04 +08:00
|
|
|
} else if (this.courseModel.prdType == '06') {
|
|
|
|
this.enterISCS();
|
2019-10-31 17:30:24 +08:00
|
|
|
} else {
|
|
|
|
if (this.courseModel.pmsList && this.courseModel.pmsList.length) {
|
|
|
|
this.jump();
|
|
|
|
} else {
|
|
|
|
if (this.tryTime <= 1) {
|
|
|
|
this.$confirm(this.$t('tip.noPermissionHint'), this.$t('global.tips'), {
|
|
|
|
confirmButtonText: this.$t('global.confirm'),
|
|
|
|
cancelButtonText: this.$t('global.cancel'),
|
|
|
|
type: 'warning'
|
|
|
|
}).then(() => {
|
|
|
|
this.buy();
|
2019-11-25 18:21:56 +08:00
|
|
|
}).catch(() => { });
|
2019-10-31 17:30:24 +08:00
|
|
|
} else {
|
|
|
|
this.jump();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
jumpScheduling() {
|
2019-11-25 18:21:56 +08:00
|
|
|
this.disabled = true;
|
|
|
|
setTimeout(() => {
|
2019-12-27 19:36:29 +08:00
|
|
|
const data = { mapId: this.courseModel.mapId, prdType: this.currentPrdType };
|
2019-11-25 18:21:56 +08:00
|
|
|
schedulingNotify(data).then(resp => {
|
2019-12-27 19:36:29 +08:00
|
|
|
const query = { lineCode: this.courseModel.lineCode, group: resp.data, prdType: this.courseModel.prdType, mapId: this.courseModel.mapId, goodsId: this.goodsId, try: this.tryUser };
|
2019-12-30 09:00:16 +08:00
|
|
|
if (this.drawWay) {
|
|
|
|
this.$router.push({ path: `${UrlConfig.displayNew}/demon`, query: query });
|
|
|
|
} else {
|
|
|
|
this.$router.push({ path: `${UrlConfig.display}/demon`, query: query });
|
|
|
|
}
|
2019-11-25 18:21:56 +08:00
|
|
|
launchFullscreen();
|
|
|
|
}).catch(error => {
|
|
|
|
this.$messageBox(this.$t('error.createSimulationFailed') + error.message);
|
|
|
|
this.disabled = false;
|
|
|
|
});
|
|
|
|
}, 100);
|
2019-10-31 17:30:24 +08:00
|
|
|
},
|
|
|
|
jump() {
|
2019-11-25 18:21:56 +08:00
|
|
|
this.disabled = true;
|
|
|
|
setTimeout(() => {
|
2019-12-30 09:00:16 +08:00
|
|
|
if (!this.drawWay) {
|
2019-12-30 18:45:05 +08:00
|
|
|
const data = { mapId: this.courseModel.mapId, prdType: this.currentPrdType };
|
2019-12-30 09:00:16 +08:00
|
|
|
simulationNotify(data).then(resp => {
|
2020-01-14 16:19:36 +08:00
|
|
|
const query = { lineCode: this.courseModel.lineCode, group: resp.data, prdType: this.courseModel.prdType, mapId: this.courseModel.mapId, goodsId: this.goodsId, try: this.tryUser, project: getSessionStorage('project') };
|
2019-12-26 11:01:54 +08:00
|
|
|
this.$router.push({ path: `${UrlConfig.display}/demon`, query: query });
|
2019-12-30 09:00:16 +08:00
|
|
|
launchFullscreen();
|
|
|
|
}).catch(error => {
|
|
|
|
this.$messageBox(this.$t('error.createSimulationFailed') + error.message);
|
|
|
|
this.disabled = false;
|
|
|
|
});
|
|
|
|
} else {
|
2019-12-30 18:45:05 +08:00
|
|
|
const data = { mapId: this.courseModel.mapId, prdType: this.currentPrdType };
|
2019-12-30 09:00:16 +08:00
|
|
|
createSimulationNew(data).then(resp => {
|
2020-01-14 16:19:36 +08:00
|
|
|
const query = { lineCode: this.courseModel.lineCode, group: resp.data, prdType: this.courseModel.prdType, mapId: this.courseModel.mapId, goodsId: this.goodsId, try: this.tryUser, project: getSessionStorage('project') };
|
2019-12-30 09:00:16 +08:00
|
|
|
this.$router.push({ path: `${UrlConfig.displayNew}/demon`, query: query });
|
|
|
|
launchFullscreen();
|
|
|
|
}).catch(error => {
|
|
|
|
this.$messageBox(this.$t('error.createSimulationFailed') + error.message);
|
|
|
|
this.disabled = false;
|
|
|
|
});
|
|
|
|
}
|
2019-11-25 18:21:56 +08:00
|
|
|
}, 100);
|
2019-10-31 17:30:24 +08:00
|
|
|
},
|
|
|
|
buy() {
|
2019-12-05 18:12:09 +08:00
|
|
|
// this.disabled = true;
|
|
|
|
// setTimeout(() => {
|
|
|
|
// this.$router.push({
|
|
|
|
// path: `${UrlConfig.trainingPlatform.pay}/${this.courseModel.id}`,
|
2019-12-27 19:36:29 +08:00
|
|
|
// query: { permissionType: PermissionType.SIMULATION, prdType: this.courseModel.prdType, mapId: this.courseModel.mapId, subSystem: this.$route.params.subSystem }
|
2019-12-05 18:12:09 +08:00
|
|
|
// });
|
|
|
|
// }, 100);
|
|
|
|
this.$messageBox(this.$t('global.buyingTips'));
|
2019-10-31 17:30:24 +08:00
|
|
|
},
|
|
|
|
distribute() {
|
2019-11-25 18:21:56 +08:00
|
|
|
this.disabled = true;
|
2019-10-31 17:30:24 +08:00
|
|
|
if (this.$refs) {
|
|
|
|
this.$refs[`limit`].distribute(this.courseModel);
|
|
|
|
}
|
2019-11-25 18:21:56 +08:00
|
|
|
this.disabled = false;
|
2019-10-31 17:30:24 +08:00
|
|
|
}
|
|
|
|
}
|
2019-08-14 14:01:28 +08:00
|
|
|
};
|
2019-07-26 13:32:43 +08:00
|
|
|
</script>
|
2019-10-31 17:30:24 +08:00
|
|
|
|
|
|
|
<style rel="stylesheet/scss" lang="scss" scoped>
|
|
|
|
.joylink-card{
|
|
|
|
height: 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
.card-title{
|
|
|
|
height: 47px;
|
|
|
|
line-height: 47px;
|
|
|
|
text-align: center;
|
|
|
|
border-bottom: 1px solid #d6d6d6;
|
|
|
|
}
|
2019-07-26 13:32:43 +08:00
|
|
|
}
|
2019-09-24 11:05:10 +08:00
|
|
|
.simulation-detail {
|
2019-10-31 17:30:24 +08:00
|
|
|
padding: 50px;
|
|
|
|
padding-bottom: 0;
|
|
|
|
height: calc(100% - 107px);
|
|
|
|
overflow: auto;
|
2019-07-26 13:32:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.list-item {
|
2019-10-17 16:23:14 +08:00
|
|
|
font-size: 14px;
|
2019-07-26 13:32:43 +08:00
|
|
|
margin-bottom: 20px;
|
|
|
|
padding: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.list-label {
|
|
|
|
display: -moz-inline-box;
|
|
|
|
display: inline-block;
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.list-elem {
|
|
|
|
color: #808080 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-buy {
|
|
|
|
text-align: center;
|
2019-10-31 17:30:24 +08:00
|
|
|
padding: 10px 0;
|
2019-07-26 13:32:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.el-tabs--border-card>.el-tabs__header .el-tabs__item {
|
|
|
|
font-weight: bold !important;
|
|
|
|
}
|
2019-08-09 15:52:55 +08:00
|
|
|
</style>
|