2019-07-26 13:32:43 +08:00
|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
<div class="display-draft">
|
|
|
|
<!-- <el-button-group>
|
|
|
|
<el-button type="primary" @click="saveScenesStage" v-if="isSaveStage">保存背景</el-button>
|
|
|
|
<el-button type="success" @click="saveScenesData" v-else>保存数据</el-button>
|
|
|
|
<el-button type="danger" @click="dumpScenesData">重置剧本</el-button>
|
|
|
|
</el-button-group> -->
|
|
|
|
<el-button-group>
|
|
|
|
<el-button type="success" @click="selectBeginTime" :disabled="isDisable">按计划行车</el-button>
|
|
|
|
<el-button type="danger" @click="end" :disabled="!isDisable">退出计划</el-button>
|
|
|
|
<el-button type="primary" @click="back">返回</el-button>
|
|
|
|
</el-button-group>
|
|
|
|
</div>
|
|
|
|
<set-time ref="setTime" @ConfirmSelectBeginTime="start"></set-time>
|
|
|
|
<tip-script-record ref="tipTaskRecord" :group="group"></tip-script-record>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<!-- 单人仿真 -->
|
|
|
|
<script>
|
|
|
|
import SetTime from './demon/setTime';
|
|
|
|
import TipScriptRecord from './tipScriptRecord';
|
|
|
|
import { mapGetters } from 'vuex';
|
|
|
|
import { Notification } from 'element-ui';
|
|
|
|
import { getGoodsTryUse } from '@/api/management/goods';
|
|
|
|
import { runDiagramStart, runDiagramOver, setTrainingCbtcInitTime, runDiagramGetTime } from '@/api/simulation';
|
|
|
|
import { OperateMode, PermissionType } from '@/scripts/ConstDic';
|
|
|
|
import { exitFullscreen } from '@/utils/screen';
|
|
|
|
import { getCountTime } from '@/utils/index';
|
|
|
|
import { loadMapData } from '@/utils/loaddata';
|
|
|
|
import { runDiagramIsStart,queryScriptStep } from '@/api/simulation';
|
|
|
|
import { timeFormat } from '@/utils/date';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'MenuTask',
|
|
|
|
props: {
|
|
|
|
group: {
|
|
|
|
type: String,
|
|
|
|
required: true
|
|
|
|
},
|
|
|
|
offset: {
|
|
|
|
type: Number
|
|
|
|
}
|
|
|
|
},
|
|
|
|
components: {
|
|
|
|
SetTime,
|
|
|
|
TipScriptRecord
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
isDisable: false,
|
|
|
|
tryTime: 0, // 进入页面多少秒
|
|
|
|
timeNow: 0, // 进入页面 相对时间
|
|
|
|
time: null, // 定时器
|
|
|
|
countTime: 0, // 显示 倒计时
|
|
|
|
remainingTime: 0,
|
|
|
|
goodsId: this.$route.query.goodsId,
|
|
|
|
// isSaveStage: true,
|
|
|
|
training: {
|
|
|
|
id: '',
|
|
|
|
name: '',
|
|
|
|
remarks: ''
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
scriptId() {
|
|
|
|
this.$route.query.scriptId;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
watch: {
|
|
|
|
'$store.state.training.subscribeCount': function () {
|
|
|
|
this.group && this.InitLoadPage()
|
|
|
|
}
|
|
|
|
},
|
|
|
|
beforeDestroy() {
|
|
|
|
if (this.time) {
|
|
|
|
this.setTryTime();
|
|
|
|
clearTimeout(this.time);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
async InitLoadPage() {
|
|
|
|
try {
|
|
|
|
let 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');
|
|
|
|
}
|
|
|
|
|
|
|
|
await this.loadSystemTime();
|
|
|
|
} catch (error) {
|
|
|
|
console.log(error);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
selectBeginTime() {
|
|
|
|
this.$refs.setTime.doShow();
|
|
|
|
},
|
|
|
|
start(model) {
|
|
|
|
this.isDisable = true;
|
|
|
|
runDiagramStart(model, this.group).then(res => {
|
|
|
|
this.$store.dispatch('training/simulationStart').then(() => {
|
|
|
|
this.$store.dispatch('training/setInitTime', +new Date(`${new Date().getFullYear()} ${model.initTime}`));
|
|
|
|
})
|
|
|
|
}).catch(error => {
|
|
|
|
this.isDisable = false;
|
|
|
|
this.$messageBox('开始仿真失败,请返回重试');
|
|
|
|
});
|
|
|
|
},
|
|
|
|
end() {
|
|
|
|
this.isDisable = false;
|
|
|
|
runDiagramOver(this.group).then(() => {
|
|
|
|
this.$store.dispatch('training/over').then(() => {
|
2019-07-26 15:52:50 +08:00
|
|
|
this.$store.dispatch('training/setMapDefaultState').then(() => {
|
|
|
|
this.$store.dispatch('map/clearJlmapTrainView');
|
|
|
|
this.$store.dispatch('map/setTrainWindowShow', false);
|
|
|
|
})
|
2019-07-26 13:32:43 +08:00
|
|
|
})
|
|
|
|
}).catch(error => {
|
|
|
|
this.isDisable = true;
|
|
|
|
this.$messageBox('结束仿真失败,请返回');
|
|
|
|
})
|
|
|
|
},
|
|
|
|
setTryTime() {
|
|
|
|
if (this.try) {
|
|
|
|
this.$emit('tryTime', { time: this.tryTime, goodsId: this.goodsId });
|
|
|
|
}
|
|
|
|
},
|
|
|
|
back() {
|
|
|
|
this.$store.dispatch('training/over').then(() => {
|
|
|
|
eventBus.$emit('runPlanStop');
|
|
|
|
eventBus.$emit('chatSubscribeStop');
|
|
|
|
history.go(-1);
|
|
|
|
Notification.closeAll();
|
|
|
|
exitFullscreen();
|
|
|
|
})
|
|
|
|
},
|
|
|
|
async loadSystemTime() {
|
|
|
|
let rest = await runDiagramGetTime(this.group);
|
|
|
|
if (rest && rest.code == 200) {
|
|
|
|
this.$store.dispatch('training/setInitTime', +new Date(`${new Date().getFullYear()} ${timeFormat(rest.data)}`));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
<style rel="stylesheet/scss" lang="scss" scoped>
|
|
|
|
@import "src/styles/mixin.scss";
|
|
|
|
|
|
|
|
.display-card {
|
|
|
|
z-index: 9;
|
2019-07-26 15:52:50 +08:00
|
|
|
display: inline-block;
|
2019-07-26 13:32:43 +08:00
|
|
|
position: absolute;
|
|
|
|
top: 17px;
|
|
|
|
left: 160px;
|
|
|
|
height: 32px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.display-card .el-row {
|
|
|
|
line-height: 32px !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.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;
|
|
|
|
}
|
|
|
|
|
|
|
|
.display-draft {
|
|
|
|
position: absolute;
|
|
|
|
float: right;
|
|
|
|
right: 15px;
|
|
|
|
bottom: 15px;
|
|
|
|
}
|
|
|
|
</style>
|