rt-sim-training-client/src/views/newMap/jointTrainingNew/menuSchema.vue

269 lines
9.5 KiB
Vue
Raw Normal View History

<template>
<div style="height:100%">
2020-11-13 13:31:44 +08:00
<div class="schema" :style="{top: offset+'px'}">
2020-12-16 13:25:55 +08:00
<!--<el-select v-if="showSelectStation" v-model="chiShowStation" style="width: 100px;" size="small" @change="switchStationMode">-->
2020-12-24 15:33:06 +08:00
<!--<el-option v-for="item in stationList" :key="item.value" :label="item.name" :value="item.value" />-->
2020-12-16 13:25:55 +08:00
<!--</el-select>-->
<el-button-group>
2020-09-21 10:17:37 +08:00
<el-button v-if="userRole=== 'STATION_SUPERVISOR' && !$route.query.projectDevice" size="small" @click="goIbp">IBP盘</el-button>
<el-button v-if="userRole=== 'DISPATCHER' && !$route.query.projectDevice" size="small" @click="goBigScreen">大屏</el-button>
<el-button v-if="userRole==='DISPATCHER' && !$route.query.projectDevice" size="small" @click="goIscs">ISCS</el-button>
<el-button v-if="running && !dataError && $route.query.type !== 'ILW'" size="small" :disabled="viewDisabled" @click="viewRunPlan">{{ $t('joinTraining.runGraphPreview') }}</el-button>
<template v-if="isAdmin">
<el-button v-if="!running && !dataError && $route.query.type !== 'ILW'" size="small" type="warning" @click="loadRunPlan">
{{ $t('joinTraining.runGraphLoading') }}</el-button><!-- -->
</template>
</el-button-group>
<el-button v-if="(isAdmin || $route.query.type === 'ILW') && !dataError && !isScreen" size="small" :type="faultMode ? '' : 'primary' " @click="changeOperateMode()">{{ faultMode?' 切换到普通模式':'切换到故障模式' }}</el-button>
<!-- isCenter && !dataError && !isAdmin 此判断用于以后(目前 暂时不用) -->
2020-08-05 09:05:26 +08:00
<el-button v-if="isShowDirective" size="small" :type="directiveMode ? 'primary' : ''" @click="changeDirectiveMode()">{{ directiveMode? '切换到普通模式':'切换到指令模式' }}</el-button>
</div>
2020-08-05 15:12:40 +08:00
<join-run-plan-view v-if="running && !dataError" ref="runPlanView" :group="group" />
2020-09-16 14:26:04 +08:00
<select-ibp ref="selectIbp" />
</div>
</template>
<script>
import { mapGetters } from 'vuex';
import { OperateMode } from '@/scripts/ConstDic';
import { getByGroupStationList } from '@/api/jmap/map';
import { getSessionStorage } from '@/utils/auth';
import JoinRunPlanView from '@/views/newMap/displayNew/demon/runPlanView';
2020-09-16 14:26:04 +08:00
import SelectIbp from '@/views/newMap/displayNew/demon/selectIbp';
2020-09-21 10:17:37 +08:00
import { getIbpInfoByStation } from '@/api/ibp';
2020-12-24 15:33:06 +08:00
import { loadRunPlanData } from '@/utils/loaddata';
export default {
name: 'MenuDemonSchema',
components:{
2020-09-16 14:26:04 +08:00
JoinRunPlanView,
SelectIbp
},
props: {
group: {
type: String,
required: true
},
offset: {
type: Number,
required: true
},
userRole: {
type: String,
required: true
2020-03-25 15:22:52 +08:00
},
showSelectStation: {
type: Boolean,
default() {
return false;
}
},
stationList: {
2020-04-21 11:26:07 +08:00
type: Array,
2020-03-25 15:22:52 +08:00
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;
}
2020-09-21 10:17:37 +08:00
},
deviceCode: {
type: String,
default() {
return '';
}
}
},
data() {
return {
mode: OperateMode.NORMAL,
OperateMode: OperateMode,
viewDisabled: true,
realData: {},
series: [],
chiShowStation: '',
kmRangeCoordMap: {},
runPlanData: {},
userId: '',
faultMode: false,
2020-08-04 10:03:06 +08:00
directiveMode: false,
firstLoad: true
};
},
computed: {
...mapGetters('runPlan', [
'stations'
]),
2020-08-05 15:12:40 +08:00
running() {
return this.$store.state.training.started;
},
isScreen() {
return this.$store.state.training.prdType === '07';
},
2020-11-09 11:31:20 +08:00
project() {
return getSessionStorage('project');
2020-11-13 13:31:44 +08:00
},
isShowDirective() { // 哈尔滨项目 行调设备显示
return this.$route.query.type == 'CW' && this.project == 'heb';
}
},
watch: {
2020-09-03 14:44:16 +08:00
// '$store.state.training.switchcount': async function () {
// if (this.group) {
// const started = this.$store.state.training.started;
// if (started && !this.firstLoad) {
// await this.loadRunData(this.$route.query);
// } else if (this.firstLoad) {
// await this.loadRunData(this.$route.query);
// }
// }
// }
'$store.state.map.mapDataLoadedCount': function () {
this.loadRunData(this.$route.query);
2020-10-12 14:25:33 +08:00
},
'$store.state.training.triggerFaultCount': function () {
this.setFault();
2020-12-24 15:33:06 +08:00
},
'$store.state.runPlan.loadRunPlanCount': function () {
this.viewDisabled = false;
this.firstLoad = false;
}
},
async mounted() {
this.userId = this.$store.state.user.id;
},
methods: {
loadRunData(opt) {
this.$store.dispatch('runPlan/clear').then(resp => {
if (opt && opt.mapId) {
this.viewDisabled = true;
getByGroupStationList(this.$route.query.group).then(response => {
const stations = response.data;
this.$store.dispatch('runPlan/setStations', stations).then(() => {
2020-12-24 15:33:06 +08:00
loadRunPlanData(this.group, this.dataError);
});
}).catch(() => {
this.$messageBox(this.$t('error.obtainStationListFailed'));
});
}
});
},
// initPlannedDriving(isDisable) {
// this.isDisable = isDisable;
// },
changeOperateMode() {
this.faultMode = !this.faultMode;
let mode = OperateMode.NORMAL;
if (this.faultMode) {
mode = OperateMode.FAULT;
}
this.$store.dispatch('training/changeOperateMode', { mode: mode });
},
changeDirectiveMode() { // 调整指令模式
this.directiveMode = !this.directiveMode;
let mode = OperateMode.NORMAL;
if (this.directiveMode) {
mode = OperateMode.DIRECTIVE;
}
this.$store.dispatch('training/changeOperateMode', { mode: mode });
},
setFault() {
this.$emit('faultChooseShow');
},
loadRunPlan() {
this.$emit('runPlanLoadShow');
},
viewRunPlan() {
2020-11-13 13:31:44 +08:00
this.$refs.runPlanView.doShow();
},
// 选择车站
2020-07-24 18:38:19 +08:00
switchStationMode(stationCode) {
this.$emit('switchStationMode', stationCode);
},
// 点击大屏预览
goBigScreen() {
const routeData = this.$router.resolve({
path:`/displayBigScreen/${this.$route.query.mapId}`,
query:{
lineCode: this.$route.query.lineCode,
mapId:this.$route.query.mapId,
group:this.$route.query.group,
prdType: '07',
try:0,
noPreLogout: true
}
});
window.open(routeData.href, '_blank', 'noopener noreferrer');
},
goIscs() {
const routeData = this.$router.resolve({
path:`/displayIscs/system`,
query:{
lineCode: this.$route.query.lineCode,
mapId: this.$route.query.mapId,
group: this.$route.query.group,
noPreLogout: true
}
});
window.open(routeData.href, '_blank', 'noopener noreferrer');
},
// 点击ibp预览
goIbp() {
2020-09-16 14:26:04 +08:00
// this.$refs.selectIbp.doShow();
2020-09-21 10:17:37 +08:00
getIbpInfoByStation(this.$route.query.mapId, this.deviceCode).then(resp => {
if (resp.data) {
const routeData = this.$router.resolve({
path:`/ibpShow`,
query:{
lineCode: this.$route.query.lineCode,
mapId: this.$route.query.mapId,
group: this.$route.query.group,
stationCode: this.deviceCode,
loadAll: true,
noPreLogout: true
}
});
window.open(routeData.href, '_blank', 'noopener noreferrer');
} else {
this.$messageBox('本车站暂无IBP盘数据');
}
}).catch((error) => {
if (error.code == '10007') {
2020-09-21 10:17:37 +08:00
this.$messageBox('本车站暂无IBP盘数据');
} else {
this.$message.error('获取IBP盘数据异常');
}
});
2020-09-21 10:17:37 +08:00
}
}
};
</script>
<style>
.schema {
2020-12-16 09:40:37 +08:00
z-index: 18;
display: inline;
position: absolute;
2020-07-29 10:27:02 +08:00
right: 5px;
}
.schema .el-radio-group .el-radio-button__inner {
padding: 0px 15px 0px 15px;
height: 32px;
line-height: 32px;
font-size: 12px;
}
/* /deep/ .el-button+ .el-button {
margin-left: 0px;
} */
</style>