rt-sim-training-client/src/views/scriptManage/display/tipScriptRecord.vue

250 lines
9.3 KiB
Vue
Raw Normal View History

2019-07-26 13:32:43 +08:00
<template>
<div class="reminder-drag">
2019-08-20 13:21:38 +08:00
<div class="reminder-box" ref="drapBox" :style="{height:'100%'}">
2019-08-22 18:13:55 +08:00
<el-container class="actionPane">
<el-header style="height:50px;">
<el-row class="actionList">
<span class="titleStyle">剧本编制</span>
</el-row>
</el-header>
<el-main style="padding-top:10px;padding-bottom:10px;">
<add-role :group="group" ref="addRole" @refresh="refresh"></add-role>
<add-action ref="addAction" :group="group" :size="size" @create="create" @setDisabled="setDisabled"></add-action>
<get-action ref="getAction" :group="group" :size="size" @setAction="setAction"></get-action>
</el-main>
<el-footer>
<el-button-group class="button-group">
<el-button type="primary" @click="pauseScript" v-if="isPause" :disabled="executeDisabled">暂停</el-button>
<el-button type="primary" @click="executePlayScript" v-else :disabled="executeDisabled">恢复并执行</el-button>
<el-button type="danger" @click="dumpScenesData">重置剧本</el-button>
<el-button type="primary" @click="saveScenesStage" :disabled="backDisabled">{{$t('scriptRecord.saveBackground')}}</el-button>
<el-button type="success" @click="saveScenesData" :loading="isSavingScript" >{{$t('scriptRecord.saveData')}}</el-button>
<!-- 暂停 -->
</el-button-group>
</el-footer>
</el-container>
2019-07-26 13:32:43 +08:00
</div>
2019-08-20 12:47:39 +08:00
</div>
2019-07-26 13:32:43 +08:00
</template>
<script>
2019-08-20 12:47:39 +08:00
import Vue from 'vue';
2019-08-22 18:13:55 +08:00
import AddAction from '../scriptRecord/addAction';
2019-08-20 15:41:54 +08:00
import GetAction from '../scriptRecord/getAction';
2019-08-22 18:13:55 +08:00
import AddRole from '../scriptRecord/addRole';
import WindowResizeHandler from '@/mixin/WindowResizeHandler';
2019-08-20 12:47:39 +08:00
import {saveScriptScenes, saveScriptData, dumpScriptData, updateMapLocation, scriptPause, executeScript} from '@/api/simulation';
2019-07-26 13:32:43 +08:00
export default {
name: 'TipScriptRecord',
props: {
group: {
type: String,
required: true
},
},
components: {
GetAction,
2019-08-22 18:13:55 +08:00
AddRole,
AddAction
},
2019-08-22 18:13:55 +08:00
mixins: [WindowResizeHandler],
// this.$t('scriptRecord.scriptTitle')
data() {
return {
title:"剧本编制",
isShrink: false,
mapLocation:{},
autoSaveScript: null,
isSavingScript:false,
2019-08-22 18:13:55 +08:00
isPause:true,
2019-08-19 18:24:06 +08:00
executeDisabled:false,
2019-08-21 14:28:34 +08:00
backDisabled:false,
2019-08-22 18:13:55 +08:00
size:{
width:350,
height:window.innerHeight-342,
2019-08-22 18:13:55 +08:00
}
// isSaveStage: true,
}
},
created() {
},
2019-08-21 14:28:34 +08:00
watch:{
'$store.state.scriptRecord.bgSet': function (val) {
this.backDisabled=val;
},
},
mounted(){
this.initAutoSaveScript();
2019-08-21 14:28:34 +08:00
this.backDisabled=this.$store.state.scriptRecord.bgSet;
},
beforeDestroy() {
this.clearAutoSave();
},
methods: {
2019-08-22 18:13:55 +08:00
resizeHandler() {
this.size = { width:350, height:window.innerHeight-342};
},
2019-08-19 18:24:06 +08:00
setIsParse(isPause){
this.isPause=isPause;
},
setDisabled(data)
{
this.executeDisabled=!data;
},
initAutoSaveScript() {
const timeout = 1000 * 20;
this.clearAutoSave(this.autoSaveScript);
this.autoSaveScript = setInterval(this.saveScenesData,timeout);
},
clearAutoSave() {
if (this.autoSaveScript) {
clearInterval(this.autoSaveScript);
this.autoSaveScript = null;
}
},
2019-08-19 18:24:06 +08:00
pauseScript(){
scriptPause(this.group).then(resp => {
// this.isSaveStage = false;
this.$store.dispatch('scriptRecord/updateSimulationPause',true);
// this.$message.success('暂停成功');
}).catch(error => {
this.$messageBox('暂停失败!');
});
},
executePlayScript(){
executeScript(this.group).then(resp => {
// this.isSaveStage = false;
this.$store.dispatch('scriptRecord/updateSimulationPause',false);
// this.$message.success('暂停成功');
}).catch(error => {
this.$messageBox('恢复失败!');
});
},
saveScenesStage() {
2019-08-20 13:21:38 +08:00
let data=Vue.prototype.$jlmap.$options;
let group=this.$route.query.group;
let dataZoom={scale:data.scaleRate,x:data.offsetX,y:data.offsetY};
saveScriptScenes(this.group).then(resp => {
2019-08-20 13:21:38 +08:00
updateMapLocation(group,dataZoom).then(response=>{
// this.$message.success('更新定位成功');
2019-08-21 14:28:34 +08:00
this.$store.dispatch('scriptRecord/updateBgSet',true);
2019-08-20 13:21:38 +08:00
this.$message.success('保存背景成功');
}).catch(error => {
this.$messageBox(`更新定位失败: ${error.message}`);
});
// this.isSaveStage = false;
2019-08-20 13:21:38 +08:00
// this.$message.success('保存背景成功');
}).catch(error => {
this.$messageBox('保存背景失败!');
})
2019-08-20 13:21:38 +08:00
},
saveScenesData() {
this.isSavingScript=true;
saveScriptData(this.group).then(resp => {
this.$message.success('保存数据成功');
this.isSavingScript=false;
this.initAutoSaveScript();
}).catch(error => {
this.$messageBox(`保存数据失败!: ${error.message}`);
this.isSavingScript=false;
if (error.code === 40004 || error.code === 40005 || error.code === 40003) {
this.clearAutoSave();
} else {
this.initAutoSaveScript();
}
})
},
dumpScenesData() {
2019-08-19 18:24:06 +08:00
this.clearAutoSave();
let group=this.group;
this.$confirm('此操作将会清除已保存的编制数据, 是否继续?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
dumpScriptData(group).then(resp => {
// this.isSaveStage = true;
2019-08-20 15:41:54 +08:00
this.$parent.$refs['display'].$refs['menuScript'].resetBeginTime();
2019-08-19 18:24:06 +08:00
this.$refs["getAction"].loadInitData();
2019-08-22 18:13:55 +08:00
this.$refs["addRole"].initData();
this.$refs["addAction"].initData();
2019-08-19 18:24:06 +08:00
this.initAutoSaveScript();
2019-08-21 14:28:34 +08:00
this.$store.dispatch('scriptRecord/updateBgSet',false);
2019-08-21 20:11:16 +08:00
this.$message.success('重置数据成功');
}).catch(error => {
2019-08-21 20:11:16 +08:00
this.$messageBox('重置数据失败!');
})
2019-08-19 18:24:06 +08:00
}).catch(error => {
this.initAutoSaveScript();
})
},
2019-08-22 18:13:55 +08:00
refresh(){
this.$refs['addAction'].initData();
},
create(){
this.$refs['getAction'].loadInitData();
// this.$refs['addRole'].resetData(data);
2019-08-22 18:13:55 +08:00
},
setAction(row){
// debugger;
2019-08-22 18:13:55 +08:00
this.$refs['addAction'].doShow(row);
}
}
}
2019-07-26 13:32:43 +08:00
</script>
<style rel="stylesheet/scss" lang="scss" scoped>
@import "src/styles/mixin.scss";
.reminder-box {
position: absolute;
float: left;
2019-08-20 13:21:38 +08:00
left: 0px;
top:0px;
2019-08-21 10:24:55 +08:00
width: 765px;
2019-08-20 13:21:38 +08:00
height:100%;
2019-07-26 13:32:43 +08:00
background-color: #fff;
overflow: hidden;
z-index: 10;
font-size: 18px;
2019-08-20 13:21:38 +08:00
.actionPane{
height: 100%;
2019-07-26 13:32:43 +08:00
}
2019-08-20 13:21:38 +08:00
.button-group{
2019-08-22 18:13:55 +08:00
margin-bottom: 20px;
float: right;
2019-08-20 13:21:38 +08:00
}
2019-08-22 18:13:55 +08:00
2019-08-20 13:21:38 +08:00
.actionList{
margin-top: 10px;
font-size: 15px;
2019-08-22 18:13:55 +08:00
padding-top: 5px;
border-bottom: 1px #ccc solid;
height: 35px;
2019-08-20 13:21:38 +08:00
}
.titleStyle{
2019-08-22 18:13:55 +08:00
margin-left:5px;
2019-07-26 13:32:43 +08:00
}
.icon {
float: right;
margin-right: 10px;
cursor: pointer;
background-color: #f3f3f3;
border-radius: 50%;
}
/deep/ {
.el-tree-node__content {
margin-bottom: 4px;
}
.el-tree--highlight-current .el-tree-node.is-current>.el-tree-node__content {
background-color: #d6e5f7;
}
}
}
2019-08-20 12:47:39 +08:00
</style>