2020-01-06 18:39:44 +08:00
|
|
|
|
<template>
|
|
|
|
|
<div>
|
2020-05-27 19:02:39 +08:00
|
|
|
|
<chat-box :group="group" :user-role="userRole" />
|
2020-03-20 17:56:20 +08:00
|
|
|
|
<div class="display-draft" :class="{'display-type-hb': $route.query.lineCode == '07' && $store.state.training.prdType=='01'}">
|
2020-01-06 18:39:44 +08:00
|
|
|
|
<el-button-group>
|
2020-07-14 13:27:00 +08:00
|
|
|
|
<el-button v-if="isAdmin && adminMode" @click="handleEquipment">设备管理</el-button>
|
2020-06-30 14:27:32 +08:00
|
|
|
|
<el-button v-if="isAdmin && adminMode" @click="memberManage">成员管理</el-button>
|
|
|
|
|
<el-button v-if="isAdmin && adminMode" type="primary" @click="generateQrCode">生成二维码</el-button>
|
2020-06-28 14:27:28 +08:00
|
|
|
|
<el-button v-if="hasRealDevice && !dataError " type="primary" @click="setRelDevice">{{ $t('joinTraining.connectRealDevices') }}</el-button>
|
2020-05-09 20:24:59 +08:00
|
|
|
|
<el-button v-if="isDriver && !dataError" type="jumpjlmap3d" @click="jumpjlmap3d">{{ $t('joinTraining.driverPerspective') }}</el-button>
|
2020-06-08 18:22:12 +08:00
|
|
|
|
<el-button v-if="isStationSupervisor && !dataError" type="jmap3dcctv" @click="jlmap3dcctv">cctv</el-button>
|
2020-06-30 14:27:32 +08:00
|
|
|
|
<template v-if="isAdmin && adminMode && project != 'refereeJsxt'">
|
2020-05-09 20:24:59 +08:00
|
|
|
|
<el-button type="success" :disabled="isDisable || dataError" @click="selectBeginTime">{{ $t('joinTraining.drivingByPlan') }}</el-button>
|
2020-06-15 13:34:24 +08:00
|
|
|
|
<el-button type="danger" :disabled="dataError" @click="end">{{ $t('joinTraining.initialize') }}</el-button>
|
2020-01-06 18:39:44 +08:00
|
|
|
|
</template>
|
|
|
|
|
</el-button-group>
|
2020-05-25 13:48:43 +08:00
|
|
|
|
<template v-if="project==='jsxt'">
|
2020-06-05 09:38:14 +08:00
|
|
|
|
<div style="background: #FFF;display: inline-block;height: 40px;line-height: 40px;padding: 0 5px;border: 2px solid #F00;border-radius: 6px;margin-right: 8px;">{{ '剩余时间:'+countdownTime }}</div>
|
2020-05-25 15:43:36 +08:00
|
|
|
|
<el-button :disabled="!jsStart" type="success" @click="startCompetition">开始</el-button>
|
|
|
|
|
<el-button :disabled="jsStart" type="danger" @click="endCompetition">提交</el-button>
|
2020-05-25 13:48:43 +08:00
|
|
|
|
</template>
|
2020-06-30 14:27:32 +08:00
|
|
|
|
<el-button v-if="project==='refereeJsxt'" type="success" @click="refeeEndCompetition">退出</el-button>
|
|
|
|
|
<el-button v-if="project!=='jsxt'&&project!=='refereeJsxt'" type="primary" :loading="backLoading" @click="back">退出</el-button>
|
2020-01-06 18:39:44 +08:00
|
|
|
|
</div>
|
|
|
|
|
<qr-code ref="qrCode" />
|
|
|
|
|
<set-time ref="setTime" @ConfirmSelectBeginTime="start" />
|
|
|
|
|
<real-device ref="realDevice" />
|
2020-07-14 13:27:00 +08:00
|
|
|
|
<equipment ref="equipment" />
|
2020-01-06 18:39:44 +08:00
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import QrCode from '@/components/QrCode';
|
2020-07-06 18:00:44 +08:00
|
|
|
|
import ChatBox from './newChatView/chatBox';
|
2020-07-14 13:27:00 +08:00
|
|
|
|
import Equipment from '@/views/newMap/displayNew/demon/equipment';
|
2020-03-17 14:54:03 +08:00
|
|
|
|
import SetTime from '@/views/newMap/displayNew/demon/setTime';
|
2020-06-30 14:27:32 +08:00
|
|
|
|
import { ranAsPlan, exitRunPlan, clearSimulation } from '@/api/simulation';
|
2020-01-06 18:39:44 +08:00
|
|
|
|
import { exitFullscreen } from '@/utils/screen';
|
2020-06-30 14:27:32 +08:00
|
|
|
|
import { getSimulationQrcode } from '@/api/jointSimulation';
|
2020-07-10 10:52:31 +08:00
|
|
|
|
// import { EventBus } from '@/scripts/event-bus';
|
2020-01-06 18:39:44 +08:00
|
|
|
|
import { getSessionStorage } from '@/utils/auth';
|
|
|
|
|
import RealDevice from './menuDraft/realDevice';
|
2020-06-05 09:38:14 +08:00
|
|
|
|
import { refereeExitSimulation, quitCurrentRace, startPracticalCompetition, submitPracticalCompetition } from '@/api/competition';
|
2020-05-21 10:43:32 +08:00
|
|
|
|
import { prefixIntrger } from '@/utils/date';
|
2020-06-05 09:38:14 +08:00
|
|
|
|
import localStore from 'storejs';
|
2020-01-06 18:39:44 +08:00
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
name: 'MenuDemonJoint',
|
|
|
|
|
components: {
|
2020-04-23 17:13:11 +08:00
|
|
|
|
ChatBox,
|
2020-01-06 18:39:44 +08:00
|
|
|
|
QrCode,
|
|
|
|
|
SetTime,
|
2020-07-14 13:27:00 +08:00
|
|
|
|
RealDevice,
|
|
|
|
|
Equipment
|
2020-01-06 18:39:44 +08:00
|
|
|
|
},
|
|
|
|
|
props: {
|
|
|
|
|
group: {
|
|
|
|
|
type: String,
|
|
|
|
|
required: true
|
|
|
|
|
},
|
|
|
|
|
userRole: {
|
|
|
|
|
type: String,
|
|
|
|
|
required: true
|
|
|
|
|
},
|
2020-06-05 09:38:14 +08:00
|
|
|
|
countdownTime: {
|
|
|
|
|
type: String,
|
|
|
|
|
required: true
|
|
|
|
|
},
|
2020-01-06 18:39:44 +08:00
|
|
|
|
deviceCode: {
|
|
|
|
|
type: String,
|
|
|
|
|
default() {
|
|
|
|
|
return '';
|
|
|
|
|
}
|
2020-05-09 20:24:59 +08:00
|
|
|
|
},
|
|
|
|
|
dataError: {
|
|
|
|
|
type: Boolean,
|
|
|
|
|
default() {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2020-06-30 14:27:32 +08:00
|
|
|
|
},
|
|
|
|
|
isAdmin: {
|
|
|
|
|
type: Boolean,
|
|
|
|
|
default() {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
adminMode: {
|
|
|
|
|
type: Boolean,
|
|
|
|
|
default() {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2020-01-06 18:39:44 +08:00
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
isDisable: false,
|
2020-04-21 17:28:13 +08:00
|
|
|
|
backLoading:false,
|
2020-01-06 18:39:44 +08:00
|
|
|
|
chatShow: true,
|
|
|
|
|
offset: 10,
|
|
|
|
|
userId: '',
|
|
|
|
|
stationList: [],
|
2020-05-25 15:43:36 +08:00
|
|
|
|
stationLists: [],
|
2020-07-01 18:52:29 +08:00
|
|
|
|
jsStart: true,
|
|
|
|
|
isGoback: false
|
2020-01-06 18:39:44 +08:00
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
computed: {
|
|
|
|
|
lineCode() {
|
|
|
|
|
return this.$route.query.lineCode;
|
|
|
|
|
},
|
|
|
|
|
isSpeaking() {
|
2020-03-17 14:54:03 +08:00
|
|
|
|
return this.userRole != 'DRIVER' && this.userRole != '';
|
2020-01-06 18:39:44 +08:00
|
|
|
|
},
|
2020-06-10 16:56:52 +08:00
|
|
|
|
isStationSupervisor() {
|
2020-06-08 18:22:12 +08:00
|
|
|
|
return this.userRole == 'STATION_SUPERVISOR';
|
|
|
|
|
},
|
2020-01-06 18:39:44 +08:00
|
|
|
|
isDriver() {
|
2020-03-17 14:54:03 +08:00
|
|
|
|
return this.userRole == 'DRIVER';
|
2020-01-06 18:39:44 +08:00
|
|
|
|
},
|
2020-06-28 14:27:28 +08:00
|
|
|
|
hasRealDevice() {
|
2020-04-16 15:52:56 +08:00
|
|
|
|
return getSessionStorage('project').endsWith('gzb') && this.userRole === 'CI';
|
2020-05-25 13:48:43 +08:00
|
|
|
|
},
|
|
|
|
|
project() {
|
|
|
|
|
return getSessionStorage('project');
|
2020-01-06 18:39:44 +08:00
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
watch: {
|
|
|
|
|
'$store.state.config.menuBarLoadedCount': function (val) {
|
|
|
|
|
this.setPosition();
|
|
|
|
|
},
|
|
|
|
|
'$store.state.map.map.stationList': function (val) { // 执行一次 以后不会有变化
|
|
|
|
|
if (val && val.length) {
|
|
|
|
|
this.stationList = val;
|
|
|
|
|
this.stationLists = val;
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
'$store.state.socket.roleList': function (val) {
|
|
|
|
|
if (val && val.length) {
|
|
|
|
|
this.$nextTick(() => {
|
|
|
|
|
this.addrolesList(val);
|
|
|
|
|
this.$store.dispatch('config/updateMenuBar');
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
'$store.state.socket.simulationStart': async function (val) {
|
|
|
|
|
if (val) {
|
2020-06-10 16:56:52 +08:00
|
|
|
|
this.$store.dispatch('training/setInitTime', +new Date(val));
|
|
|
|
|
this.$store.dispatch('training/simulationStart', { start: true});
|
2020-01-06 18:39:44 +08:00
|
|
|
|
}
|
2020-05-19 17:05:23 +08:00
|
|
|
|
},
|
|
|
|
|
'$store.state.map.runPlanStatus': function (val) {
|
|
|
|
|
this.isDisable = val;
|
2020-05-21 10:43:32 +08:00
|
|
|
|
},
|
2020-05-22 09:32:48 +08:00
|
|
|
|
'$store.state.socket.simulationOver':function(val) {
|
|
|
|
|
if (val && this.project === 'refereeJsxt') {
|
|
|
|
|
this.$router.go(-1);
|
2020-07-01 18:52:29 +08:00
|
|
|
|
} else {
|
|
|
|
|
if (!this.isGoback) {
|
|
|
|
|
this.back();
|
|
|
|
|
}
|
2020-05-22 09:32:48 +08:00
|
|
|
|
}
|
2020-01-06 18:39:44 +08:00
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
async mounted() {
|
|
|
|
|
this.userId = this.$store.state.user.id;
|
2020-04-21 17:28:13 +08:00
|
|
|
|
this.backLoading = false;
|
2020-01-06 18:39:44 +08:00
|
|
|
|
await this.initLoadPage();
|
2020-05-19 17:05:23 +08:00
|
|
|
|
this.isDisable = this.$store.state.map.runPlanStatus;
|
2020-01-06 18:39:44 +08:00
|
|
|
|
},
|
|
|
|
|
beforeDestroy() {
|
|
|
|
|
this.$store.dispatch('training/setGroup', '');
|
2020-05-28 15:28:18 +08:00
|
|
|
|
if (this.project === 'jsxt') {
|
|
|
|
|
quitCurrentRace(this.$route.query.raceId, {group:this.group}).then(res=>{
|
|
|
|
|
});
|
|
|
|
|
}
|
2020-01-06 18:39:44 +08:00
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
async initLoadPage() {
|
|
|
|
|
try {
|
2020-03-17 10:07:02 +08:00
|
|
|
|
// const resp = await runDiagramIsStart(this.group);
|
|
|
|
|
// if (resp && resp.data) {
|
|
|
|
|
// this.isDisable = true;
|
|
|
|
|
// this.$store.dispatch('training/simulationStart');
|
|
|
|
|
// } else {
|
|
|
|
|
// this.isDisable = false;
|
|
|
|
|
// this.$store.dispatch('training/over');
|
|
|
|
|
// }
|
2020-01-06 18:39:44 +08:00
|
|
|
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
console.log(error);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
setPosition() {
|
|
|
|
|
this.$nextTick(() => {
|
|
|
|
|
let offset = 10;
|
|
|
|
|
const menuBar = document.getElementById('menuBar');
|
|
|
|
|
const menuTool = document.getElementById('menuTool');
|
|
|
|
|
|
|
|
|
|
if (menuBar) {
|
|
|
|
|
offset += (menuBar.offsetHeight || 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (menuTool) {
|
|
|
|
|
offset += (menuTool.offsetHeight || 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (this.offset != offset) {
|
|
|
|
|
this.offset = offset;
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
},
|
2020-03-17 18:44:49 +08:00
|
|
|
|
// 设置用户角色 Admin 管理员 Instructor 教员 Dispatcher 行调 Attendant 车站 Audience 观众 Driver 司机 MAINTAINER 通号
|
2020-01-06 18:39:44 +08:00
|
|
|
|
addrolesList(list) {
|
|
|
|
|
list.forEach(item => {
|
|
|
|
|
if (this.userId == item.id) {
|
|
|
|
|
switch (item.userRole) {
|
2020-03-17 14:54:03 +08:00
|
|
|
|
case 'INSTRUCTOR':
|
|
|
|
|
this.$store.dispatch('training/setPrdType', '02'); this.$store.dispatch('training/setRoles', 'INSTRUCTOR');
|
2020-01-06 18:39:44 +08:00
|
|
|
|
this.$emit('getUserRole');
|
|
|
|
|
break;
|
2020-03-17 14:54:03 +08:00
|
|
|
|
case 'DISPATCHER':
|
|
|
|
|
this.$store.dispatch('training/setPrdType', '02'); this.$store.dispatch('training/setRoles', 'DISPATCHER');
|
2020-01-06 18:39:44 +08:00
|
|
|
|
this.$emit('getUserRole');
|
|
|
|
|
break;
|
2020-03-17 14:54:03 +08:00
|
|
|
|
case 'STATION_SUPERVISOR':
|
2020-01-06 18:39:44 +08:00
|
|
|
|
if (!item['deviceCode']) {
|
2020-03-17 14:54:03 +08:00
|
|
|
|
this.$store.dispatch('training/setPrdType', ''); this.$store.dispatch('training/setRoles', 'STATION_SUPERVISOR');
|
2020-01-06 18:39:44 +08:00
|
|
|
|
break;
|
|
|
|
|
}
|
2020-03-17 14:54:03 +08:00
|
|
|
|
this.$store.dispatch('training/setPrdType', '01'); this.$store.dispatch('training/setRoles', 'STATION_SUPERVISOR');
|
2020-01-06 18:39:44 +08:00
|
|
|
|
this.$emit('getUserRole');
|
|
|
|
|
break;
|
2020-04-16 15:52:56 +08:00
|
|
|
|
case 'CI':
|
|
|
|
|
this.$store.dispatch('training/setPrdType', '01'); this.$store.dispatch('training/setRoles', 'CI');
|
|
|
|
|
this.$emit('getUserRole');
|
|
|
|
|
break;
|
2020-03-17 14:54:03 +08:00
|
|
|
|
case 'DRIVER':
|
|
|
|
|
this.$store.dispatch('training/setPrdType', ''); this.$store.dispatch('training/setRoles', 'DRIVER');
|
2020-01-06 18:39:44 +08:00
|
|
|
|
this.$emit('getUserRole');
|
|
|
|
|
break;
|
2020-03-17 18:44:49 +08:00
|
|
|
|
case 'MAINTAINER':
|
|
|
|
|
this.$store.dispatch('training/setPrdType', ''); this.$store.dispatch('training/setRoles', 'MAINTAINER');
|
2020-01-06 18:39:44 +08:00
|
|
|
|
this.$emit('getUserRole');
|
|
|
|
|
break;
|
|
|
|
|
case 'IBP':
|
|
|
|
|
this.$store.dispatch('training/setPrdType', ''); this.$store.dispatch('training/setRoles', 'IBP');
|
|
|
|
|
this.$emit('getUserRole');
|
|
|
|
|
break;
|
2020-03-17 14:54:03 +08:00
|
|
|
|
case 'BIGSCREEN':
|
|
|
|
|
this.$store.dispatch('training/setPrdType', ''); this.$store.dispatch('training/setRoles', 'BIGSCREEN');
|
2020-01-06 18:39:44 +08:00
|
|
|
|
this.$emit('getUserRole');
|
|
|
|
|
break;
|
|
|
|
|
default:
|
2020-03-17 14:54:03 +08:00
|
|
|
|
this.$store.dispatch('training/setPrdType', ''); this.$store.dispatch('training/setRoles', 'AUDIENCE');
|
2020-01-06 18:39:44 +08:00
|
|
|
|
this.$emit('getUserRole');
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
if (this.$refs.chatView) {
|
|
|
|
|
this.$refs.chatView.getUserRole();
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
selectBeginTime() {
|
|
|
|
|
this.$refs.setTime.doShow();
|
|
|
|
|
},
|
|
|
|
|
start(model) {
|
|
|
|
|
this.isDisable = true;
|
2020-01-17 11:31:53 +08:00
|
|
|
|
const data = {
|
2020-03-17 14:54:03 +08:00
|
|
|
|
time: model.initTime
|
2020-01-17 11:31:53 +08:00
|
|
|
|
};
|
|
|
|
|
ranAsPlan(data, this.group).then(res => {
|
2020-01-06 18:39:44 +08:00
|
|
|
|
this.$store.dispatch('training/simulationStart').then(() => {
|
2020-05-25 15:43:36 +08:00
|
|
|
|
if (this.project == 'jsxt') {
|
|
|
|
|
this.jsStart = false;
|
|
|
|
|
}
|
2020-05-19 14:47:47 +08:00
|
|
|
|
this.$store.dispatch('map/setRunPlanStatus', true);
|
2020-05-25 10:32:14 +08:00
|
|
|
|
this.$store.dispatch('training/setInitTime', +new Date(`${new Date().toLocaleDateString()} ${model.initTime}`));
|
2020-01-06 18:39:44 +08:00
|
|
|
|
});
|
2020-01-17 11:31:53 +08:00
|
|
|
|
}).catch((error) => {
|
2020-01-06 18:39:44 +08:00
|
|
|
|
this.isDisable = false;
|
2020-01-17 13:17:12 +08:00
|
|
|
|
if (error.code == '5001') {
|
|
|
|
|
this.$messageBox(this.$t('error.mapDataError') + ',' + this.$t('error.startSimulationFailed'));
|
|
|
|
|
} else if (error.code == '5002') {
|
|
|
|
|
this.$messageBox(this.$t('error.runningChartDataError') + ',' + this.$t('error.startSimulationFailed'));
|
|
|
|
|
} else if (error.code == '5003') {
|
|
|
|
|
this.$messageBox(this.$t('error.runningChartIsNotLoaded') + ',' + this.$t('error.startSimulationFailed'));
|
2020-02-28 11:25:36 +08:00
|
|
|
|
} else if (error.code == '5004') {
|
|
|
|
|
this.$messageBox(this.$t('error.runningDataError') + ',' + this.$t('error.startSimulationFailed'));
|
|
|
|
|
} else if (error.code == '5000') {
|
|
|
|
|
this.$messageBox(this.$t('error.systemError') + ',' + this.$t('error.startSimulationFailed'));
|
|
|
|
|
} else if (error.code == '4000') {
|
|
|
|
|
this.$messageBox(this.$t('error.simulationDoesNotExist') + ',' + this.$t('error.startSimulationFailed'));
|
|
|
|
|
} else if (error.code == '4001') {
|
|
|
|
|
this.$messageBox(this.$t('error.simulationOperationIsNotDefined') + ',' + this.$t('error.startSimulationFailed'));
|
|
|
|
|
} else if (error.code == '4002') {
|
|
|
|
|
this.$messageBox(this.$t('error.simulationOperationProcessingMethodNotFound') + ',' + this.$t('error.startSimulationFailed'));
|
|
|
|
|
} else if (error.code == '4003') {
|
|
|
|
|
this.$messageBox(this.$t('error.simulationOperationFailed') + ',' + this.$t('error.startSimulationFailed'));
|
|
|
|
|
} else if (error.code == '4004') {
|
|
|
|
|
this.$messageBox(this.$t('error.operationConflict') + ',' + this.$t('error.startSimulationFailed'));
|
2020-01-17 13:17:12 +08:00
|
|
|
|
}
|
2020-01-06 18:39:44 +08:00
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
end() {
|
|
|
|
|
this.isDisable = false;
|
2020-07-10 10:52:31 +08:00
|
|
|
|
// EventBus.$emit('trainView');
|
2020-05-19 14:47:47 +08:00
|
|
|
|
exitRunPlan(this.group).then(()=>{
|
|
|
|
|
this.$store.dispatch('map/setRunPlanStatus', false);
|
|
|
|
|
}).catch(() => {
|
2020-01-06 18:39:44 +08:00
|
|
|
|
this.$store.dispatch('training/over').then(() => {
|
|
|
|
|
this.isDisable = true;
|
2020-06-22 14:29:55 +08:00
|
|
|
|
this.$store.dispatch('map/resetActiveTrainList');
|
2020-01-06 18:39:44 +08:00
|
|
|
|
this.$messageBox(this.$t('error.endSimulationFailed'));
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
},
|
2020-07-14 13:27:00 +08:00
|
|
|
|
handleEquipment() {
|
|
|
|
|
this.$refs.equipment.doShow();
|
|
|
|
|
},
|
2020-06-30 14:27:32 +08:00
|
|
|
|
async back() {
|
2020-07-01 18:52:29 +08:00
|
|
|
|
this.isGoback = true;
|
2020-06-30 18:35:57 +08:00
|
|
|
|
if (this.isAdmin) {
|
|
|
|
|
await clearSimulation(this.group);
|
|
|
|
|
}
|
2020-07-10 18:30:37 +08:00
|
|
|
|
this.$store.dispatch('training/setMemberList', {memberList:[], userId: this.$store.state.user.id});
|
|
|
|
|
this.$store.dispatch('training/setSimulationUserList', []);
|
2020-01-06 18:39:44 +08:00
|
|
|
|
this.$store.dispatch('training/over').then(() => {
|
2020-04-21 17:28:13 +08:00
|
|
|
|
this.backLoading = true;
|
2020-07-09 13:05:50 +08:00
|
|
|
|
this.$store.dispatch('map/resetActiveTrainList');
|
2020-06-30 14:27:32 +08:00
|
|
|
|
if (this.$route.query.projectDevice) {
|
2020-07-01 18:52:29 +08:00
|
|
|
|
this.$store.dispatch('LogOut').then(() => {
|
2020-06-30 14:27:32 +08:00
|
|
|
|
location.reload();
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
history.go(-1);
|
2020-05-20 14:46:26 +08:00
|
|
|
|
exitFullscreen();
|
2020-06-30 14:27:32 +08:00
|
|
|
|
}
|
2020-01-06 18:39:44 +08:00
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
jumpjlmap3d() {
|
|
|
|
|
this.$emit('hidepanel');
|
|
|
|
|
},
|
2020-06-10 16:56:52 +08:00
|
|
|
|
jlmap3dcctv() {
|
2020-06-08 18:22:12 +08:00
|
|
|
|
this.$emit('hidejl3dcctv');
|
|
|
|
|
},
|
2020-01-06 18:39:44 +08:00
|
|
|
|
setRelDevice() {
|
|
|
|
|
this.$refs.realDevice.doShow();
|
2020-05-20 14:46:26 +08:00
|
|
|
|
},
|
2020-05-21 10:43:32 +08:00
|
|
|
|
formatTime(initTime) {
|
|
|
|
|
const hh = prefixIntrger(initTime.getHours(), 2);
|
|
|
|
|
const mm = prefixIntrger(initTime.getMinutes(), 2);
|
|
|
|
|
const ss = prefixIntrger(initTime.getSeconds(), 2);
|
|
|
|
|
return `${hh}:${mm}:${ss}`;
|
2020-05-25 13:48:43 +08:00
|
|
|
|
},
|
|
|
|
|
startCompetition() {
|
2020-06-03 18:17:52 +08:00
|
|
|
|
startPracticalCompetition(this.group, this.$route.query.raceId).then(resp => {
|
2020-06-05 09:38:14 +08:00
|
|
|
|
this.$emit('startCounting');
|
2020-06-03 18:17:52 +08:00
|
|
|
|
this.jsStart = false;
|
|
|
|
|
}).catch(()=> {
|
|
|
|
|
this.$message.error('开始竞赛失败');
|
|
|
|
|
});
|
2020-05-25 13:48:43 +08:00
|
|
|
|
},
|
|
|
|
|
endCompetition() {
|
|
|
|
|
this.$confirm('此操作将结束并提交本次竞赛,是否继续', this.$t('global.tips'), {
|
|
|
|
|
confirmButtonText: this.$t('global.confirm'),
|
|
|
|
|
cancelButtonText: this.$t('global.cancel'),
|
|
|
|
|
type: 'warning'
|
|
|
|
|
}).then(() => {
|
2020-06-05 09:38:14 +08:00
|
|
|
|
this.submit();
|
2020-05-25 13:48:43 +08:00
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
refeeEndCompetition() {
|
|
|
|
|
refereeExitSimulation(this.group).then(resp => {
|
2020-05-25 16:38:03 +08:00
|
|
|
|
// this.$router.go(-1);
|
|
|
|
|
this.$router.replace({ path: `/refereeJsxt/home`, query: { raceId:this.$route.query.raceId } });
|
2020-05-25 13:48:43 +08:00
|
|
|
|
}).catch(()=> {
|
|
|
|
|
this.$message.success('退出系统失败');
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
submit() {
|
2020-06-05 09:38:14 +08:00
|
|
|
|
submitPracticalCompetition(this.group, this.$route.query.raceId).then(resp => {
|
|
|
|
|
const storeKey = this.$store.state.user.id + '' + this.$route.query.raceId + 'practical';
|
|
|
|
|
localStore.remove(storeKey);
|
|
|
|
|
this.$router.replace({ path: `/jsxt/result`, query: { subSystem: this.$route.query.subSystem, mapId: this.$route.query.mapId, type: 'operate', raceId:this.$route.query.raceId } });
|
|
|
|
|
}).catch(()=> {
|
|
|
|
|
this.$message.error('提交试卷失败!');
|
|
|
|
|
});
|
2020-06-28 14:27:28 +08:00
|
|
|
|
},
|
2020-06-29 13:11:27 +08:00
|
|
|
|
memberManage() {
|
|
|
|
|
this.$emit('handlerMemberManage');
|
2020-06-30 14:27:32 +08:00
|
|
|
|
},
|
|
|
|
|
generateQrCode() {
|
|
|
|
|
const self = this;
|
|
|
|
|
getSimulationQrcode(this.$route.query.group).then(resp => {
|
|
|
|
|
const param = {
|
|
|
|
|
url: resp.data,
|
|
|
|
|
title: self.$t('综合演练二维码'),
|
|
|
|
|
group: self.$route.query.group
|
|
|
|
|
};
|
|
|
|
|
if (self.$refs) {
|
|
|
|
|
self.$refs.qrCode.doShow(param);
|
|
|
|
|
}
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
this.$messageBox('仿真生成二维码失败!');
|
|
|
|
|
});
|
2020-01-06 18:39:44 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|
<style rel="stylesheet/scss" lang="scss" scoped>
|
2020-06-29 13:11:27 +08:00
|
|
|
|
@import "src/styles/mixin.scss";
|
|
|
|
|
.tabs-roles {
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
border-bottom: 1px solid #e4e7ed;
|
|
|
|
|
height: 40px;
|
|
|
|
|
line-height: 40px;
|
|
|
|
|
-webkit-box-sizing: border-box;
|
|
|
|
|
box-sizing: border-box;
|
2020-01-06 18:39:44 +08:00
|
|
|
|
|
2020-06-29 13:11:27 +08:00
|
|
|
|
.roles {
|
|
|
|
|
padding: 0 20px;
|
|
|
|
|
height: 41px;
|
|
|
|
|
list-style: none;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
color: #303133;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
border-left: 1px solid #e4e7ed;
|
|
|
|
|
border-right: 1px solid #e4e7ed;
|
|
|
|
|
float: left;
|
|
|
|
|
}
|
2020-01-06 18:39:44 +08:00
|
|
|
|
|
2020-06-29 13:11:27 +08:00
|
|
|
|
.roles-first {
|
|
|
|
|
border-right: none;
|
|
|
|
|
}
|
2020-01-06 18:39:44 +08:00
|
|
|
|
|
2020-06-29 13:11:27 +08:00
|
|
|
|
.roles-active {
|
|
|
|
|
border-bottom-color: #fff;
|
|
|
|
|
color: #409EFF;
|
|
|
|
|
}
|
2020-01-06 18:39:44 +08:00
|
|
|
|
|
2020-06-29 13:11:27 +08:00
|
|
|
|
}
|
2020-01-06 18:39:44 +08:00
|
|
|
|
|
2020-06-29 13:11:27 +08:00
|
|
|
|
.tabs-content {
|
|
|
|
|
height: 300px;
|
|
|
|
|
width: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
}
|
2020-01-06 18:39:44 +08:00
|
|
|
|
|
2020-06-29 13:11:27 +08:00
|
|
|
|
.display-score {
|
|
|
|
|
background-color: black;
|
|
|
|
|
display: -moz-inline-box;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
text-align: left;
|
|
|
|
|
height: 32px;
|
|
|
|
|
line-height: 24px;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
padding-left: 2px;
|
|
|
|
|
margin-left: 10px;
|
|
|
|
|
font-family: "Microsoft" !important;
|
|
|
|
|
font-size: 18px !important;
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
2020-01-06 18:39:44 +08:00
|
|
|
|
|
2020-06-29 13:11:27 +08:00
|
|
|
|
.reminder-drag {
|
|
|
|
|
position: absolute;
|
|
|
|
|
float: left;
|
|
|
|
|
left: 10px;
|
|
|
|
|
bottom: 10px;
|
|
|
|
|
width: 500px;
|
|
|
|
|
height: 340px;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
z-index: 2;
|
|
|
|
|
font-size: 18px;
|
2020-01-06 18:39:44 +08:00
|
|
|
|
|
2020-06-29 13:11:27 +08:00
|
|
|
|
/deep/ {
|
|
|
|
|
.el-tabs__header {
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-01-06 18:39:44 +08:00
|
|
|
|
|
2020-06-29 13:11:27 +08:00
|
|
|
|
.title-bar {
|
|
|
|
|
height: 40px;
|
|
|
|
|
}
|
2020-01-06 18:39:44 +08:00
|
|
|
|
|
2020-06-29 13:11:27 +08:00
|
|
|
|
.content {
|
|
|
|
|
height: 300px;
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-01-06 18:39:44 +08:00
|
|
|
|
|
2020-06-29 13:11:27 +08:00
|
|
|
|
.display-draft {
|
|
|
|
|
position: absolute;
|
|
|
|
|
float: right;
|
|
|
|
|
right: 40px;
|
|
|
|
|
bottom: 28px;
|
|
|
|
|
}
|
|
|
|
|
.display-type-hb{
|
|
|
|
|
bottom: 105px;
|
|
|
|
|
}
|
2020-01-06 18:39:44 +08:00
|
|
|
|
</style>
|