Merge branch 'test_dispaly' of https://git.code.tencent.com/lian-cbtc/jl-client into test_dispaly

# Conflicts:
#	src/jmapNew/theme/factory.js
This commit is contained in:
joylink_cuiweidong 2022-12-08 10:03:54 +08:00
commit 14f0113b3b
26 changed files with 1715 additions and 961 deletions

View File

@ -182,7 +182,7 @@ export function localImportMap(data) {
url: '/api/map/local/import', url: '/api/map/local/import',
method: 'post', method: 'post',
data: data data: data
}); });
} }
/** 根据group获取排序的车站列表包含车辆段/停车场) */ /** 根据group获取排序的车站列表包含车辆段/停车场) */

View File

@ -1,6 +1,6 @@
<template> <template>
<div class="container"> <div class="container">
<li v-if="option.children && option.children.length" class="menu-item" :class="popClass" @mouseenter="enter($vnode.key)" @mouseleave="leave"> <li v-if="option.children && option.children.length && checkVisible(option)" class="menu-item" :class="popClass" @mouseenter="enter($vnode.key)" @mouseleave="leave">
<div ref="flexBox" class="flex-box"> <div ref="flexBox" class="flex-box">
<el-button type="text" class="item" :disabled="checkDisabled(option)"> <el-button type="text" class="item" :disabled="checkDisabled(option)">
<el-link v-if="option.tipsType" :type="option.tipsType" :underline="false">{{ option.label }}</el-link> <el-link v-if="option.tipsType" :type="option.tipsType" :underline="false">{{ option.label }}</el-link>
@ -11,7 +11,7 @@
<ul v-if="isPopup" ref="popup" class="menu" :style="{display: isShow? 'block': 'table', marginLeft: marginLeft+'px'}"> <ul v-if="isPopup" ref="popup" class="menu" :style="{display: isShow? 'block': 'table', marginLeft: marginLeft+'px'}">
<div class="menu-pop pop-menu"> <div class="menu-pop pop-menu">
<div v-show="isShow" class="arrow el-icon-arrow-down" /> <div v-show="isShow" class="arrow el-icon-arrow-down" />
<pop-menu-item v-for="(el, i) in option.children" :key="i" :option="el" :pop-class="popClass" :allowedColor="allowedColor" :disabledColor="disabledColor" @close="close" /> <pop-menu-item v-for="(el, i) in option.children" :key="i" :option="el" :pop-class="popClass" :allowed-color="allowedColor" :disabled-color="disabledColor" @close="close" />
<div v-show="isShow" class="arrow el-icon-arrow-up" /> <div v-show="isShow" class="arrow el-icon-arrow-up" />
</div> </div>
</ul> </ul>
@ -52,14 +52,14 @@ export default {
type: Boolean, type: Boolean,
default: false default: false
}, },
disabledColor: { disabledColor: {
type: String, type: String,
default: '#000', default: '#000'
}, },
allowedColor: { allowedColor: {
type: String, type: String,
default: '#ccc' default: '#ccc'
} }
}, },
data() { data() {
return { return {

View File

@ -1,13 +1,13 @@
<template> <template>
<div class="menus" :style="{width: width + 'px'}"> <div class="menus" :style="{width: width + 'px'}">
<menu-bar v-show="isShowBar" ref="menuBar" :selected="selected" /> <menu-bar v-show="isShowBar" ref="menuBar" :selected="selected" />
<menu-station-stand ref="menuStationStand" :selected="selected" /> <menu-station-stand ref="menuStationStand" :selected="selected" :work="'dispatchWork'" />
<menu-switch ref="menuSwitch" :selected="selected" work="dispatchWork" /> <menu-switch ref="menuSwitch" :selected="selected" :work="'dispatchWork'" />
<menu-signal ref="menuSignal" :selected="selected" work="dispatchWork" /> <menu-signal ref="menuSignal" :selected="selected" :work="'dispatchWork'" />
<menu-section ref="menuSection" :selected="selected" work="dispatchWork" /> <menu-section ref="menuSection" :selected="selected" :work="'dispatchWork'" />
<menu-train ref="menuTrain" :selected="selected" work="dispatchWork" /> <menu-train ref="menuTrain" :selected="selected" :work="'dispatchWork'" />
<menu-station ref="menuStation" :selected="selected" work="dispatchWork" /> <menu-station ref="menuStation" :selected="selected" :work="'dispatchWork'" />
<menu-limit ref="menuLimit" :selected="selected" work="dispatchWork" /> <menu-limit ref="menuLimit" :selected="selected" :work="'dispatchWork'" />
<passive-alarm ref="passiveAlarm" /> <passive-alarm ref="passiveAlarm" />
<passive-contorl ref="passiveControl" pop-class="beijing-01__systerm" /> <passive-contorl ref="passiveControl" pop-class="beijing-01__systerm" />
<passive-timeout ref="passiveTimeout" /> <passive-timeout ref="passiveTimeout" />

View File

@ -3,7 +3,7 @@
<menu-bar ref="menuBar" :selected="selected" /> <menu-bar ref="menuBar" :selected="selected" />
<menu-button ref="menuButton" /> <menu-button ref="menuButton" />
<passive-alarm ref="passiveAlarm" /> <passive-alarm ref="passiveAlarm" />
<menu-station ref="menuStation" :selected="selected" work="localWork" /> <menu-station ref="menuStation" :selected="selected" :work="'localWork'" />
<passive-contorl ref="passiveControl" pop-class="beijing-01__systerm" /> <passive-contorl ref="passiveControl" pop-class="beijing-01__systerm" />
<passive-timeout ref="passiveTimeout" /> <passive-timeout ref="passiveTimeout" />
</div> </div>
@ -44,7 +44,6 @@ export default {
mounted() { mounted() {
this.$nextTick(() => { this.$nextTick(() => {
this.$store.dispatch('config/updateMenuBar'); this.$store.dispatch('config/updateMenuBar');
this.$refs['menuSignal'].setRouteSignal();
}); });
this.$root.$on('dialogOpen', e => { this.$root.$on('dialogOpen', e => {
if (this.selected == e && if (this.selected == e &&

View File

@ -48,7 +48,7 @@ export default {
} }
}, },
work: { work: {
type: Object, type: String,
default() { default() {
return ''; return '';
} }
@ -160,8 +160,8 @@ export default {
// //
this.menu = []; this.menu = [];
this.menuNormal.forEach(menuItem => { this.menuNormal.forEach(menuItem => {
menuItem.disabled = !judgeStationControl(this.selected.belongStation, this.selected.stationCode, this.work) || menuItem.isDisabled(this.selected, this.work); menuItem.disabled = !judgeStationControl(this.selected.belongStation, this.selected.stationCode, this.work) || (menuItem.isDisabled && menuItem.isDisabled(this.selected, this.work));
menuItem.show = menuItem.isShow(this.selected, this.work); menuItem.show = menuItem.isShow && menuItem.isShow(this.selected, this.work);
this.menu.push(menuItem); this.menu.push(menuItem);
}); });
// //

View File

@ -163,8 +163,8 @@ export default {
initMenu() { initMenu() {
// //
this.menuNormal.forEach(menuItem => { this.menuNormal.forEach(menuItem => {
menuItem.disabled = !judgeStationControl(this.selected.belongStationCode, this.selected.stationCode, this.work) || menuItem.isDisabled(this.selected, this.work); menuItem.disabled = !judgeStationControl(this.selected.belongStationCode, this.selected.stationCode, this.work) || (menuItem.isDisabled && menuItem.isDisabled(this.selected, this.work));
menuItem.show = menuItem.isShow(this.selected, this.work); menuItem.show = menuItem.isShow && menuItem.isShow(this.selected, this.work);
this.menu.push(menuItem); this.menu.push(menuItem);
}); });
// //

View File

@ -70,14 +70,14 @@ export default {
handler: this.humanControlALL, handler: this.humanControlALL,
cmdType: CMD.Station.CMD_STATION_CLOSE_AUTO_SETTING, cmdType: CMD.Station.CMD_STATION_CLOSE_AUTO_SETTING,
isDisabled: (station, work) => false, isDisabled: (station, work) => false,
isShow: (station, work) => work === 'disabledWork' && station.centralized isShow: (station, work) => work === 'dispatchWork' && station.centralized
}, },
{ {
label: '所有进路自排开', label: '所有进路自排开',
handler: this.atsAutoControlALL, handler: this.atsAutoControlALL,
cmdType: CMD.Station.CMD_STATION_OPEN_AUTO_SETTING, cmdType: CMD.Station.CMD_STATION_OPEN_AUTO_SETTING,
isDisabled: (station, work) => false, isDisabled: (station, work) => false,
isShow: (station, work) => work === 'disabledWork' && station.centralized isShow: (station, work) => work === 'dispatchWork' && station.centralized
} }
// ------- // -------
// { // {
@ -151,8 +151,8 @@ export default {
initMenu() { initMenu() {
this.menu = []; this.menu = [];
this.menuNormal.forEach(menuItem => { this.menuNormal.forEach(menuItem => {
menuItem.show = menuItem.isShow(this.selected, this.work); menuItem.show = menuItem.isShow && menuItem.isShow(this.selected, this.work);
menuItem.disabled = !judgeStationControl(this.selected.code, this.selected.stationCode, this.work) || menuItem.isDisabled(this.selected, this.work); menuItem.disabled = !judgeStationControl(this.selected.code, this.selected.stationCode, this.work) || (menuItem.isDisabled && menuItem.isDisabled(this.selected, this.work));
this.menu.push(menuItem); this.menu.push(menuItem);
}); });
if (this.selected.centralized) { if (this.selected.centralized) {

View File

@ -60,64 +60,77 @@ export default {
return { return {
menu: [], menu: [],
systemName:'beijing-01__systerm', systemName:'beijing-01__systerm',
menuNormal: { menuNormal: [
Local: [ {
], label: '设置扣车',
Center: [ handler: this.setDetainTrain,
{ cmdType: CMD.Stand.CMD_STAND_SET_HOLD_TRAIN,
label: '设置扣车', isDisabled: (stand, work) => stand.centerHoldTrain !== 0,
handler: this.setDetainTrain, isShow: (stand, work) => work === 'dispatchWork'
cmdType: CMD.Stand.CMD_STAND_SET_HOLD_TRAIN, },
isDisabled: () => {} {
}, label: '取消扣车',
{ handler: this.cancelDetainTrain,
label: '取消扣车', cmdType: CMD.Stand.CMD_STAND_CANCEL_HOLD_TRAIN,
handler: this.cancelDetainTrain, isDisabled: (stand, work) => stand.centerHoldTrain === 0,
cmdType: CMD.Stand.CMD_STAND_CANCEL_HOLD_TRAIN isShow: (stand, work) => work === 'dispatchWork'
}, },
{ {
label: '设置跳停', label: '设置跳停',
handler: this.setJumpStop, handler: this.setJumpStop,
cmdType: CMD.Stand.CMD_STAND_SET_JUMP_STOP cmdType: CMD.Stand.CMD_STAND_SET_JUMP_STOP,
}, isDisabled: (stand, work) => stand.allSkip !== 0,
{ isShow: (stand, work) => work === 'dispatchWork'
label: '取消跳停', },
handler: this.cancelJumpStop, {
cmdType: CMD.Stand.CMD_STAND_CANCEL_JUMP_STOP label: '取消跳停',
}, handler: this.cancelJumpStop,
{ cmdType: CMD.Stand.CMD_STAND_CANCEL_JUMP_STOP,
label: '提前发车', isDisabled: (stand, work) => stand.allSkip === 0 && stand.assignSkip === 0,
handler: this.earlyDeparture, isShow: (stand, work) => work === 'dispatchWork'
cmdType: CMD.Stand.CMD_STAND_EARLY_DEPART },
}, {
{ label: '提前发车',
type: 'separator' handler: this.earlyDeparture,
}, cmdType: CMD.Stand.CMD_STAND_EARLY_DEPART,
{ isDisabled: (stand, work) => stand.trainParking !== 1,
label: '停站时间控制', isShow: (stand, work) => work === 'dispatchWork'
handler: this.setStopTime, },
cmdType: CMD.Stand.CMD_STAND_SET_PARK_TIME {
}, type: 'separator'
{ },
label: '运行时间控制', {
handler: this.setRunLevel, label: '停站时间控制',
cmdType: CMD.Stand.CMD_STAND_SET_RUN_TIME handler: this.setStopTime,
}, cmdType: CMD.Stand.CMD_STAND_SET_PARK_TIME,
{ isDisabled: (stand, work) => false,
label: '变通策略管理', isShow: (stand, work) => work === 'dispatchWork'
handler: this.setBackStrategy, },
cmdType: CMD.Stand.CMD_STAND_SET_REENTRY_STRATEGY {
}, label: '运行时间控制',
{ handler: this.setRunLevel,
type: 'separator' cmdType: CMD.Stand.CMD_STAND_SET_RUN_TIME,
}, isDisabled: (stand, work) => false,
{ isShow: (stand, work) => work === 'dispatchWork'
label: '站台信息', },
handler: this.detail, {
cmdType: CMD.Stand.CMD_STAND_VIEW_STATUS label: '变通策略管理',
} handler: this.setBackStrategy,
] cmdType: CMD.Stand.CMD_STAND_SET_REENTRY_STRATEGY,
}, isDisabled: (stand, work) => false,
isShow: (stand, work) => work === 'dispatchWork'
},
{
type: 'separator'
},
{
label: '站台信息',
handler: this.detail,
cmdType: CMD.Stand.CMD_STAND_VIEW_STATUS,
isDisabled: (stand, work) => false,
isShow: (stand, work) => work === 'dispatchWork'
}
],
menuForce: [ menuForce: [
{ {
label: '设置故障', label: '设置故障',
@ -170,8 +183,8 @@ export default {
initMenu() { initMenu() {
this.menu = []; this.menu = [];
this.menuNormal.forEach(menuItem => { this.menuNormal.forEach(menuItem => {
menuItem.disabled = !judgeStationControl(this.selected.stationCode, this.selected.deviceStationCode, this.work) || menuItem.isDisabled(this.selected, this.work); menuItem.disabled = !judgeStationControl(this.selected.stationCode, this.selected.deviceStationCode, this.work) || (menuItem.isDisabled && menuItem.isDisabled(this.selected, this.work));
menuItem.show = menuItem.isShow(this.selected, this.work); menuItem.show = menuItem.isShow && menuItem.isShow(this.selected, this.work);
this.menu.push(menuItem); this.menu.push(menuItem);
}); });
// //

View File

@ -26,7 +26,7 @@ import {DeviceMenu } from '@/scripts/ConstDic';
import { OperationEvent } from '@/scripts/cmdPlugin/OperationHandler'; import { OperationEvent } from '@/scripts/cmdPlugin/OperationHandler';
import CMD from '@/scripts/cmdPlugin/CommandEnum'; import CMD from '@/scripts/cmdPlugin/CommandEnum';
import {menuOperate, commitOperate} from '@/jmapNew/theme/components/utils/menuOperate'; import {menuOperate, commitOperate} from '@/jmapNew/theme/components/utils/menuOperate';
import {judgeStationControl} from '../../components/utils/menuJudge';
export default { export default {
name: 'SwitchMenu', name: 'SwitchMenu',
components: { components: {
@ -45,50 +45,43 @@ export default {
default() { default() {
return null; return null;
} }
},
work: {
type: String,
default() {
return '';
}
} }
}, },
data() { data() {
return { return {
menu: [], menu: [],
menuNormal: { menuNormal: [
Local: [ {
], label: '轨道切除',
Center: [ handler: this.split,
{ cmdType: CMD.Switch.CMD_SWITCH_CUT_OFF,
label: '轨道切除', isDisabled: (switchDevice, work) => false,
handler: this.split, isShow: (switchDevice, work) => work === 'dispatchWork'
cmdType: CMD.Switch.CMD_SWITCH_CUT_OFF },
}, {
{ label: '轨道激活',
label: '轨道激活', handler: this.active,
handler: this.active, cmdType: CMD.Switch.CMD_SWITCH_ACTIVE,
cmdType: CMD.Switch.CMD_SWITCH_ACTIVE isDisabled: (switchDevice, work) => false,
}, isShow: (switchDevice, work) => work === 'dispatchWork'
{ },
type: 'separator' {
}, type: 'separator'
// { },
// label: '', {
// handler: this.alxeEffective, label: '设置临时限速',
// cmdType: CMD.Switch.CMD_SWITCH_COMFIRMATION_AXLE, handler: this.setSpeed,
// auth: { station: false, center: true } cmdType: CMD.Switch.CMD_SWITCH_SET_LIMIT_SPEED,
// }, isDisabled: (switchDevice, work) => false,
{ isShow: (switchDevice, work) => work === 'dispatchWork'
label: '设置临时限速', }
handler: this.setSpeed, ],
cmdType: CMD.Switch.CMD_SWITCH_SET_LIMIT_SPEED
}
// {
// type: 'separator'
// },
// {
// label: '',
// handler: this.undeveloped,
// disabledCallback: MenuDisabledState.Switch.setSpeed,
// auth: { station: false, center: true }
// }
]
},
menuForce: [ menuForce: [
{ {
label: '设置故障', label: '设置故障',
@ -137,11 +130,12 @@ export default {
}; };
}, },
initMenu() { initMenu() {
// this.menu = [];
// this.menu = MenuContextHandler.covert(this.menuNormal); this.menuNormal.forEach(menuItem => {
// if (this.operatemode === OperateMode.ADMIN) { menuItem.disabled = !judgeStationControl(this.selected.belongStationCode, this.selected.stationCode, this.work) || (menuItem.isDisabled && menuItem.isDisabled(this.selected, this.work));
// this.menu = [...this.menu, ...this.menuForce]; menuItem.show = menuItem.isShow && menuItem.isShow(this.selected, this.work);
// } this.menu.push(menuItem);
});
// //
if (this.operatemode === OperateMode.FAULT) { if (this.operatemode === OperateMode.FAULT) {

View File

@ -107,7 +107,7 @@ export default {
.chengdou-03__systerm .el-dialog { .chengdou-03__systerm .el-dialog {
background: #0055E8; background: #0055E8;
box-shadow: 1px hsla(240, 0%, 100%, 0.5) inset; box-shadow: 1px hsla(240, 0%, 100%, 0.5) inset;
border: 1px solid rgb(69, 134, 247); border: 1px solid #041c7d;
border-radius: 6px; border-radius: 6px;
font-size: 13px !important; font-size: 13px !important;
color: #000; color: #000;
@ -187,7 +187,7 @@ export default {
.chengdou-03__systerm .el-dialog .el-button:disabled { .chengdou-03__systerm .el-dialog .el-button:disabled {
border: 2px inset #E2E2E2; border: 2px inset #E2E2E2;
} }
.chengdou-03__systerm .el-dialog .el-button:disabled span { .chengdou-03__systerm .el-dialog .el-button:disabled span {
border: 0px; border: 0px;
} }

View File

@ -109,12 +109,12 @@ class Theme {
} }
// 加载行调菜单组件 // 加载行调菜单组件
loadDispatchWorkMenuComponent(code) { loadDispatchWorkMenuComponent(code) {
if (['01', '02', '04', '10', '11', '16', '08'].includes(code)) { if (['02', '09', '10', '11', '16', '08', '03', '01', '04'].includes(code)) {
return Object.assign({}, require(`./${this._mapMenu[code || this._code]}/menus/dispatchWorkMenu`).default); return Object.assign({}, require(`./${this._mapMenu[code || this._code]}/menus/dispatchWorkMenu`).default);
} }
} }
loadLocalWorkMenuComponent(code) { loadLocalWorkMenuComponent(code) {
if (['01', '02', '04', '10', '11', '16', '08'].includes(code)) { if (['02', '09', '10', '11', '16', '08', '03', '01', '04'].includes(code)) {
return Object.assign({}, require(`./${this._mapMenu[code || this._code]}/menus/localWorkMenu`).default); return Object.assign({}, require(`./${this._mapMenu[code || this._code]}/menus/localWorkMenu`).default);
} }
} }

View File

@ -177,9 +177,6 @@ export default {
menuItem.show = menuItem.isShow(this.selected, this.work); menuItem.show = menuItem.isShow(this.selected, this.work);
this.menu.push(menuItem); this.menu.push(menuItem);
}); });
if (this.operatemode === OperateMode.ADMIN) {
this.menu = [...this.menu, ...this.menuForce];
}
// //
if (this.operatemode === OperateMode.FAULT) { if (this.operatemode === OperateMode.FAULT) {
const menuHook = [ const menuHook = [

View File

@ -64,6 +64,7 @@ import { mapGetters } from 'vuex';
import { MapDeviceType } from '@/scripts/cmdPlugin/Config'; import { MapDeviceType } from '@/scripts/cmdPlugin/Config';
import { OperationEvent } from '@/scripts/cmdPlugin/OperationHandler'; import { OperationEvent } from '@/scripts/cmdPlugin/OperationHandler';
import NoticeInfo from '@/jmapNew/theme/components/menus/childDialog/noticeInfo'; import NoticeInfo from '@/jmapNew/theme/components/menus/childDialog/noticeInfo';
import CMD from '@/scripts/cmdPlugin/CommandEnum';
export default { export default {
name: 'RouteDetail', name: 'RouteDetail',
@ -127,7 +128,8 @@ export default {
commit() { commit() {
const operate = { const operate = {
over: true, over: true,
operation: OperationEvent.Signal.detail.menu.operation operation: OperationEvent.Signal.detail.menu.operation,
cmdType: CMD.Signal.CMD_SIGNAL_DETAIL
}; };
this.loading = true; this.loading = true;

View File

@ -0,0 +1,550 @@
<template>
<div class="xian-02__menus" :style="{width: width + 'px'}">
<!-- <menu-axle-reset ref="menuAxleReset" :selected="selected" /> -->
<menu-cancel ref="menuCancel" />
<!-- <menu-auto-trun-route ref="menuAutoTrunRoute" :selected="selected" /> -->
<!-- <menu-station-control ref="menuStationControl" :selected="selected" /> -->
<menu-switch ref="menuSwitch" :selected="selected" :work="'dispatchWork'" />
<menu-signal ref="menuSignal" :selected="selected" :work="'dispatchWork'" />
<menu-section ref="menuSection" :selected="selected" :work="'dispatchWork'" />
<menu-train ref="menuTrain" :selected="selected" :work="'dispatchWork'" />
<menu-station ref="menuStation" :selected="selected" :work="'dispatchWork'" />
<!-- <menu-limit ref="menuLimit" :selected="selected" /> -->
<passive-contorl ref="passiveControl" :work="'dispatchWork'" />
<menu-request ref="menuRequest" />
<menu-station-stand ref="menuStationStand" :selected="selected" :work="'dispatchWork'" @popMenuStationStand="popMenuStationStand" @totalMenuEvent="totalMenuEvent" />
<pop-station-stand ref="popStationStand" :selected="selected" :work="'dispatchWork'" @closeMenuStationStand="closeMenuStationStand" />
</div>
</template>
<script>
import { mapGetters } from 'vuex';
import MenuSignal from './menuSignal';
// import MenuAxleReset from './menuAxleReset';
// import MenuAutoTrunRoute from './menuAutoTrunRoute';
// import MenuStationControl from './menuStationControl';
import MenuSwitch from './menuSwitch';
import MenuSection from './menuSection';
import MenuTrain from './menuTrain';
import MenuStation from './menuStation';
// import MenuLimit from './menuLimit';
import MenuCancel from './menuCancel';
import PassiveContorl from './passiveDialog/control';
import MenuStationStand from './menuStationStand';
import PopStationStand from './popStationStand';
import MenuRequest from './menuRequest';
export default {
name: 'Menus',
components: {
// MenuAxleReset,
// MenuAutoTrunRoute,
MenuSignal,
MenuSwitch,
MenuSection,
// MenuStationControl,
MenuStation,
MenuTrain,
// MenuLimit,
MenuStationStand,
MenuCancel,
PassiveContorl,
PopStationStand,
MenuRequest
},
props: {
selected: {
type: Object,
default() {
return null;
}
}
},
computed: {
...mapGetters('config', [
'width'
])
},
mounted() {
this.$nextTick(() => {
this.$store.dispatch('config/updateMenuBar');
});
},
methods: {
popMenuStationStand(param) {
this.$refs.popStationStand.doShow(param.position, param.type);
},
closeMenuStationStand() {
this.$refs.menuStationStand.doClose();
},
totalMenuEvent(param) {
this.$refs.menuCancel.doShow(param);
}
}
};
</script>
<style>
.xian-02__menus .pop-menu {
background: #78e2ad;
padding: 0;
}
.xian-02__menus .pop-menu .el-popover{
background: #78e2ad;
}
.xian-02__menus .pop-menu span {
color: #000;
}
.xian-02__menus .pop-menu .is-disabled span {
color: #B4B3B8;
}
.xian-02__system {
overflow: hidden !important;
}
.xian-02__pop_tip_station{
padding: 0 !important;
margin-left: 1px !important;
background: #78e2ad !important;
border: 1px solid transparent;
border-radius: 0;
}
.xian-02__pop_tip_station:hover{
border: 1px solid #6B736A;
}
.xian-02__system .el-dialog {
background: #9da5ff;
box-shadow: 1px hsla(240, 0%, 100%, 0.5) inset;
border: 1px solid #9da5ff;
border-radius: 6px;
font-size: 13px !important;
color: #000;
}
.xian-02__system .el-dialog span {
font-size: 13px !important;
line-height: 22px;
}
.xian-02__system .el-dialog .el-dialog__footer {
background: #5F9EA0;
opacity: 1;
}
.xian-02__system .el-dialog .el-dialog__body {
padding: 20px;
margin: 0px 3px 3px;
border: 2px solid rgba(120, 121, 123, 0.5);
box-shadow: 1px hsla(240, 0%, 100%, 0.5) inset;
background: #5F9EA0;
opacity: 1;
}
.xian-02__system .station-stand .el-dialog__body {
background: #000;
color: #E8E8E8;
}
.xian-02__menus .stand-stop-time .el-dialog__body {
padding: 20px;
margin: 0px 3px 3px;
border: 2px solid rgba(120, 121, 123, 0.5);
box-shadow: 1px hsla(240, 0%, 100%, 0.5) inset;
background: #5F9EA0;
opacity: 1;
}
.xian-02__system .el-dialog .el-dialog__title {
font-size: 18px;
color: #fff;
}
.xian-02__system .el-dialog .el-dialog__header {
padding: 2px 1px;
}
.xian-02__system .el-dialog .el-dialog__headerbtn {
background: linear-gradient(#CD98A0, #C27D6E, #B63022, #C68770);
border: 1px solid #fff;
border-radius: 4px;
top: 2px;
right: 3px;
line-height: 16px;
}
.xian-02__system .el-dialog .el-dialog__headerbtn .el-icon-close:before {
font-size: 16px;
}
.xian-02__system .el-dialog .el-dialog__headerbtn .el-dialog__close {
color: #fff;
}
.xian-02__system .el-dialog .el-button {
height: 24px;
line-height: 22px;
padding: 0px;
width: 80px;
border: 2px outset #B7D4D5;
border-radius: 0 !important;
color: #000;
background: #5F9EA0;
}
.xian-02__system .el-dialog .expand {
width: 120px;
}
.xian-02__system .el-dialog .el-button:focus span {
border: 1px dashed #315253;
}
.xian-02__system .el-dialog .el-button:active {
border: 2px inset #B7D4D5;
}
.xian-02__system .el-dialog .el-button:disabled {
border: 2px inset #B7D4D5;
}
.xian-02__system .el-dialog .el-button:disabled span {
border: 0px;
}
.xian-02__system .el-select-dropdown__item {
background: #5F9EA0;
}
.xian-02__system .el-select-dropdown__list {
background: #5F9EA0;
}
.xian-02__select-option .el-select-dropdown__item{
background: #5F9EA0;
}
.xian-02__select-option .el-scrollbar__wrap {
background-color: #5F9EA0;
overflow: hidden;
overflow-y: scroll;
}
.xian-02__select-option{
border-style: solid;
border-width: 1px;
border-color: #335658 #99C1C3 #99C1C3 #335658;
border-radius: 0;
background:#5F9EA0;
}
.xian-02__select-option .el-scrollbar{
border-style: solid;
border-width: 1px;
border-color: #467576 #A0C6C7 #A0C6C7 #467576;
border-radius: 0;
}
.xian-02__select-option .el-select-dropdown__item.selected{
color: #fff;
}
.xian-02__select-option .el-select-dropdown__item{
color: #000;
}
.xian-02__system .el-dialog .el-transfer-panel{
border-style: solid;
border-width: 1px;
border-color: #467576 #A0C6C7 #A0C6C7 #467576;
border-radius: 0;
background: #5F9EA0;
}
.xian-02__system .el-dialog .el-transfer .el-button{
width: 40px;
}
.xian-02__system .el-transfer-panel .el-transfer-panel__header .el-checkbox .el-checkbox__label span {
color: #000;
}
.xian-02__system .el-dialog .el-transfer-panel .el-transfer-panel__header {
background: #5F9EA0;
border-bottom: 1px solid #467576;
}
.xian-02__system .el-dialog .el-transfer-panel .el-transfer-panel__empty {
color: #5F9EA0;
}
.xian-02__system .el-dialog .el-input {
border-style:solid;
border-width: 1px;
border-color: #335658 #99C1C3 #99C1C3 #335658;
height: 22px !important;
line-height: 22px !important;
background: #5F9EA0;
}
.xian-02__system .el-dialog .el-input__inner {
color: #000;
background: #5F9EA0 !important;
border-style:solid;
border-width: 1px;
border-color: #467576 #A0C6C7 #A0C6C7 #467576;
border-radius: 0px !important;
box-sizing: border-box;
height: 22px !important;
line-height: 22px !important;
}
/*.xian-02__system .el-dialog .el-input.is-disabled .el-input__inner {*/
/*background: #F0F0F0 !important;*/
/*}*/
.xian-02__system .el-dialog .el-textarea {
border-style:solid;
border-width: 1px;
border-color: #335658 #99C1C3 #99C1C3 #335658;
border-radius: 0;
}
.xian-02__system .el-dialog .el-textarea .el-textarea__inner {
color: #000;
background: #5F9EA0 !important;
border-style:solid;
border-width: 1px;
border-color: #467576 #A0C6C7 #A0C6C7 #467576;
border-radius: 0px !important;
box-sizing: border-box;
}
.xian-02__system .el-dialog .el-textarea.is-disabled .el-textarea__inner {
background: #F0F0F0 !important;
}
.xian-02__system .el-dialog .el-table--border th.gutter {
background: #EBEADB !important;
}
.xian-02__system .el-dialog .el-table {
border: 2px inset #E9E9E9;
color: #000 !important;
}
.xian-02__system .el-dialog .el-table .cell {
height: 22px;
line-height: 22px;
}
.xian-02__system .el-dialog .el-table th.is-leaf {
background: #F0F0F0 !important;
border-right: 1px solid #BDBDBD !important;
border-bottom: 1px solid #BDBDBD !important;
color: #000 !important;
height: 20px !important;
padding: 0px;
}
.xian-02__system .el-dialog .el-table tr td {
height: 20px !important;
padding: 0px;
}
.xian-02__system .el-dialog .el-table .el-table__empty-text {
top: 15px !important;
}
.xian-02__system .el-dialog .current-row>td {
background: #3399FF !important;
color: #fff !important;
}
.xian-02__system .el-dialog .el-checkbox__inner {
border: 1px inset #dcdfe6 !important;
}
.xian-02__system .el-dialog .el-checkbox__label {
color: #000 !important;
}
.xian-02__system .el-dialog .el-checkbox.is-disabled .el-checkbox__inner {
background: #E6E6E6 !important;
}
.xian-02__system .el-dialog .el-checkbox.is-disabled .el-checkbox__label {
color: #C5C9CC !important;
}
.xian-02__system .el-dialog .el-checkbox__input.is-checked .el-checkbox__inner {
background: #fff !important;
border: 1px inset #dcdfe6 !important;
}
.xian-02__system .el-dialog .el-checkbox__input.is-checked .el-checkbox__inner::after {
position: absolute;
-webkit-box-sizing: content-box;
box-sizing: content-box;
content: "";
border: 1px solid #000;
border-left: 0;
border-top: 0;
height: 7px;
left: 4px;
top: 1px;
}
.xian-02__system .el-dialog .el-radio__inner {
border: 1px inset #dcdfe6 !important;
}
.xian-02__system .el-dialog .el-radio__label {
color: #000 !important;
}
.xian-02__system .el-dialog .el-radio__input.is-checked .el-radio__inner {
background: #fff !important;
border: 1px inset #dcdfe6 !important;
}
.xian-02__system .el-dialog .el-radio__input.is-checked .el-radio__inner::after {
width: 4px;
height: 4px;
border-radius: 100%;
background-color: #000 !important;
position: absolute;
left: 50%;
top: 50%;
}
.xian-02__system .el-dialog .el-radio.is-disabled .el-radio__inner {
background: #E6E6E6 !important;
}
.xian-02__system .el-dialog .el-radio.is-disabled .el-radio__label {
color: #C5C9CC !important;
}
.xian-02__system .el-dialog .base-label {
background: #5F9EA0;
position: relative;
left: -15px;
top: -18px;
}
.xian-02__system .el-dialog .el-form-item label {
font-weight: normal !important;
color: #000 !important;
}
.xian-02__system .el-dialog .context {
height: 100px;
border: 2px inset #E2E2E2;
overflow-y: scroll;
}
.xian-02__system .el-dialog .table {
margin-top: 10px;
}
.xian-02__system .el-dialog .notice {
margin-left: 62px;
line-height: 30px;
}
.xian-02__system .el-dialog .button-group {
margin-top: 20px;
}
.xian-02__system.request_box .content-box .el-table__body-wrapper .el-table__row{
background: #000;
height: 30px;
color: #518E86;
}
.xian-02__system.request_box .content-box .el-table__body-wrapper .el-table__row.hover-row td{
background: #d5ecf7;
}
.xian-02__system.request_box .content-box .el-table__body-wrapper .el-table__row.current-row td{
background: #d5ecf7;
}
.xian-02__system .el-select .el-input__suffix {
display: flex;
justify-self: center;
align-items: center;
}
.xian-02__system .el-select .is-focus .el-input__suffix {
display: flex;
justify-self: center;
align-items: center;
}
.xian-02__system .el-scrollbar__thumb {
border-style:solid;
border-width: 1px;
border-color: #335658 #99C1C3 #99C1C3 #335658;
background: #518E86;
}
.xian-02__system.train-updatePlan .el-dialog__body,
.xian-02__system.train-alertor .el-dialog__body,
.xian-02__system.train-runLevel .el-dialog__body {
color: #000!important;
}
.xian-02__system.train-runLevel .train-run-level-radio_box .el-radio__inner{
border-radius: 0;
transform: rotate(45deg);
width: 12px;
border: none!important;
height: 12px;
background: #508F86;
border-color: #9ABFB2 #284743 #284743 #9ABFB2 !important;
border-width: 2px!important;
border-style: solid!important;
}
.xian-02__system.train-runLevel .train-run-level-radio_box .is-checked .el-radio__inner{
background: #DEF003!important;
border-color: #284743 #9ABFB2 #9ABFB2 #284743 !important;
border-width: 2px!important;
border-style: solid!important;
}
.xian-02__system.train-runLevel .train-run-level-radio_box .is-checked .el-radio__inner::after{
width: 0px!important;
height: 0px!important;
}
.xian-02__system.train-updatePlan .el-dialog .el-transfer-panel {
width: 45%;
float: left;
}
.xian-02__system.train-updatePlan .el-dialog .el-transfer{
overflow: hidden;
height: 190px;
padding: 10px;
padding-top: 0;
}
.xian-02__system.train-updatePlan .el-dialog .el-transfer__buttons {
width: 10%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
float: left;
padding: 0;
height: 100%;
}
.xian-02__system.train-updatePlan .el-dialog .el-transfer__buttons .el-button {
margin: 0;
margin-bottom: 10px;
}
.xian-02__system.train-updatePlan .el-dialog .el-transfer-panel .el-transfer-panel__header {
height: 0;
overflow: hidden;
border: 0;
}
.xian-02__system.train-updatePlan .el-dialog .el-transfer-panel__item .el-checkbox__input {
display: none;
}
.xian-02__system.train-updatePlan .el-dialog .el-transfer-panel .el-transfer-panel__list,
.xian-02__system.train-updatePlan .el-dialog .el-transfer-panel .el-transfer-panel__body{
height: 165px;
overflow: auto;
}
.xian-02__system.train-updatePlan .el-dialog .el-transfer-panel__item.is-checked {
background: gray;
}
.xian-02__system.train-updatePlan .el-dialog .el-transfer-panel__list {
overflow: auto;
}
.xian-02__system.train-updatePlan .el-dialog .el-transfer-panel__item{
width: 100%;
margin: 0;
padding-left: 3px;
height: 22px;
}
.xian-02__system.train-updatePlan .el-dialog .el-transfer-panel__item .el-checkbox__label {
padding: 0;
}
</style>

View File

@ -4,16 +4,16 @@
<menu-cancel ref="menuCancel" /> <menu-cancel ref="menuCancel" />
<!-- <menu-auto-trun-route ref="menuAutoTrunRoute" :selected="selected" /> --> <!-- <menu-auto-trun-route ref="menuAutoTrunRoute" :selected="selected" /> -->
<!-- <menu-station-control ref="menuStationControl" :selected="selected" /> --> <!-- <menu-station-control ref="menuStationControl" :selected="selected" /> -->
<menu-switch ref="menuSwitch" :selected="selected" /> <menu-switch ref="menuSwitch" :selected="selected" :work="'localWork'" />
<menu-signal ref="menuSignal" :selected="selected" /> <menu-signal ref="menuSignal" :selected="selected" :work="'localWork'" />
<menu-section ref="menuSection" :selected="selected" /> <menu-section ref="menuSection" :selected="selected" :work="'localWork'" />
<menu-train ref="menuTrain" :selected="selected" /> <menu-train ref="menuTrain" :selected="selected" :work="'localWork'" />
<menu-station ref="menuStation" :selected="selected" /> <menu-station ref="menuStation" :selected="selected" :work="'localWork'" />
<!-- <menu-limit ref="menuLimit" :selected="selected" /> --> <!-- <menu-limit ref="menuLimit" :selected="selected" /> -->
<passive-contorl ref="passiveControl" /> <passive-contorl ref="passiveControl" :work="'localWork'" />
<menu-request ref="menuRequest" /> <menu-request ref="menuRequest" />
<menu-station-stand ref="menuStationStand" :selected="selected" @popMenuStationStand="popMenuStationStand" @totalMenuEvent="totalMenuEvent" /> <menu-station-stand ref="menuStationStand" :selected="selected" :work="'localWork'" @popMenuStationStand="popMenuStationStand" @totalMenuEvent="totalMenuEvent" />
<pop-station-stand ref="popStationStand" :selected="selected" @closeMenuStationStand="closeMenuStationStand" /> <pop-station-stand ref="popStationStand" :selected="selected" :work="'localWork'" @closeMenuStationStand="closeMenuStationStand" />
</div> </div>
</template> </template>

View File

@ -1,6 +1,6 @@
<template> <template>
<div> <div>
<pop-menu ref="popMenu" :menu="menu" pop-class="xian-02__pop_tip_station" :tip-msg="topTip" disabledColor="#aaa"/> <pop-menu ref="popMenu" :menu="menu" pop-class="xian-02__pop_tip_station" :tip-msg="topTip" disabled-color="#aaa" />
<section-control ref="sectionControl" pop-class="xian-02__system" /> <section-control ref="sectionControl" pop-class="xian-02__system" />
<section-un-lock ref="sectionUnLock" /> <section-un-lock ref="sectionUnLock" />
<speed-limit-control ref="speedLimitControl" pop-class="xian-02__system" /> <speed-limit-control ref="speedLimitControl" pop-class="xian-02__system" />
@ -30,6 +30,7 @@ import LoadSpareTrain from '@/jmapNew/theme/components/menus/dialog/loadSpareTra
import { OperationEvent } from '@/scripts/cmdPlugin/OperationHandler'; import { OperationEvent } from '@/scripts/cmdPlugin/OperationHandler';
import SpeedLimit from './menuDialog/speedLimit'; import SpeedLimit from './menuDialog/speedLimit';
import SpeedLimitConfirm from './menuDialog/speedLimitConfirm'; import SpeedLimitConfirm from './menuDialog/speedLimitConfirm';
import { judgeStationControl } from '@/jmapNew/theme/components/utils/menuJudge.js';
export default { export default {
name: 'SectionMenu', name: 'SectionMenu',
@ -51,90 +52,126 @@ export default {
default() { default() {
return null; return null;
} }
},
work: {
type: String,
default() {
return '';
}
} }
}, },
data() { data() {
return { return {
topTip: '', topTip: '',
menu: [], menu: [],
menuNormal: { menuNormal: [
Local: [ {
{ label: '区段故障解锁',
label: '区段故障解锁', handler: this.fault,
handler: this.fault, cmdType: CMD.Section.CMD_SECTION_FAULT_UNLOCK,
cmdType: CMD.Section.CMD_SECTION_FAULT_UNLOCK isDisabled: (section, work) => {
} return false;
// {
// label: '',
// handler: this.active,
// cmdType: CMD.Section.CMD_SECTION_ACTIVE
// },
// {
// label: '',
// handler: this.split,
// cmdType: CMD.Section.CMD_SECTION_CUT_OFF
// }
// {
// label: '',
// handler: this.lock,
// cmdType: CMD.Section.CMD_SECTION_BLOCK
// },
// {
// label: '',
// handler: this.unlock,
// cmdType: CMD.Section.CMD_SECTION_UNBLOCK
// }
],
Center: [
{
label: '区段封锁',
handler: this.lock,
cmdType: CMD.Section.CMD_SECTION_BLOCK
}, },
{ isShow: (section, work) => ['01', '02', '03'].includes(section.type) && work === 'localWork'
label: '区段解封', },
handler: this.unlock, // {
cmdType: CMD.Section.CMD_SECTION_UNBLOCK // label: '',
// handler: this.active,
// cmdType: CMD.Section.CMD_SECTION_ACTIVE
// },
// {
// label: '',
// handler: this.split,
// cmdType: CMD.Section.CMD_SECTION_CUT_OFF
// }
// {
// label: '',
// handler: this.lock,
// cmdType: CMD.Section.CMD_SECTION_BLOCK
// },
// {
// label: '',
// handler: this.unlock,
// cmdType: CMD.Section.CMD_SECTION_UNBLOCK
// }
// ],
// Center: [
{
label: '区段封锁',
handler: this.lock,
cmdType: CMD.Section.CMD_SECTION_BLOCK,
isDisabled: (section, work) => {
if (work === 'localWork') {
return section.blockade === 1;
} else {
return section.blockade === 1;
}
}, },
{ isShow: (section, work) => ['01', '02', '03'].includes(section.type) && work === 'dispatchWork'
// disabled },
label: '设备标签', {
disabled: true, label: '区段解封',
children: [ handler: this.unlock,
{ cmdType: CMD.Section.CMD_SECTION_UNBLOCK,
label: '创建设备标签', isDisabled: (section, work) => {
disabled: true, if (work === 'localWork') {
handler: this.undeveloped return section.blockade !== 1;
}, } else {
{ return section.blockade !== 1;
label: '查看设备标签', }
disabled: true,
handler: this.undeveloped
},
{
label: '更改设备标签',
disabled: true,
handler: this.undeveloped
},
{
label: '删除设备标签',
disabled: true,
handler: this.undeveloped
}
]
}, },
{ isShow: (section, work) => ['01', '02', '03'].includes(section.type) && work === 'dispatchWork'
label: '设置临时限速', },
handler: this.setSpeed, {
cmdType: CMD.Section.CMD_SECTION_SET_LIMIT_SPEED // disabled
label: '设备标签',
disabled: true,
children: [
{
label: '创建设备标签',
disabled: true,
handler: this.undeveloped
},
{
label: '查看设备标签',
disabled: true,
handler: this.undeveloped
},
{
label: '更改设备标签',
disabled: true,
handler: this.undeveloped
},
{
label: '删除设备标签',
disabled: true,
handler: this.undeveloped
}
],
isDisabled: (section, work) => {
return true;
}, },
{ isShow: (section, work) => work === 'dispatchWork'
label: '帮助', },
disabled: true, {
handler: this.undeveloped label: '设置临时限速',
} handler: this.setSpeed,
] cmdType: CMD.Section.CMD_SECTION_SET_LIMIT_SPEED,
}, isDisabled: (section, work) => {
return false;
},
isShow: (section, work) => ['01', '02', '03'].includes(section.type) && work === 'dispatchWork'
},
{
label: '帮助',
disabled: true,
handler: this.undeveloped,
isDisabled: (section, work) => {
return true;
},
isShow: (section, work) => work === 'dispatchWork'
}
],
menuForce: [ menuForce: [
{ {
label: '设置故障', label: '设置故障',
@ -180,7 +217,7 @@ export default {
mounted() { mounted() {
const isDev = process.env.NODE_ENV === 'development'; const isDev = process.env.NODE_ENV === 'development';
if (isDev) { if (isDev) {
this.menuNormal.Center.push({ this.menuNormal.push({
label: '新建计划车', label: '新建计划车',
handler: this.addPlanTrain, handler: this.addPlanTrain,
cmdType: CMD.Section.CMD_Train_Init_Plan cmdType: CMD.Section.CMD_Train_Init_Plan
@ -199,6 +236,13 @@ export default {
if (this.selected.type != '04') { if (this.selected.type != '04') {
// this.menu = this.menuNormal.Center; // this.menu = this.menuNormal.Center;
// this.menu = MenuContextHandler.covert2(this.menuNormal); // this.menu = MenuContextHandler.covert2(this.menuNormal);
this.menu = [];
this.menuNormal.forEach(menuItem => {
const status = judgeStationControl(this.selected.belongStation, this.selected.stationCode, this.work);
menuItem.disabled = menuItem.isDisabled ? menuItem.isDisabled(this.selected, this.work) || !status : false;
menuItem.show = menuItem.isShow ? menuItem.isShow(this.selected, this.work) : true;
this.menu.push(menuItem);
});
} else { } else {
this.menu = []; this.menu = [];
} }
@ -310,9 +354,9 @@ export default {
setSpeed() { setSpeed() {
commitOperate(menuOperate.Section.setSpeed, {sectionCode:this.selected.code}, 0).then(({valid, operate})=>{ commitOperate(menuOperate.Section.setSpeed, {sectionCode:this.selected.code}, 0).then(({valid, operate})=>{
if (valid) { if (valid) {
// 使 // 使
// this.$refs.speedLimit.doShow(operate, this.selected); // this.$refs.speedLimit.doShow(operate, this.selected);
this.$refs.speedLimitControl.doShow(operate, this.selected); this.$refs.speedLimitControl.doShow(operate, this.selected);
} }
}); });
}, },

View File

@ -1,6 +1,6 @@
<template> <template>
<div> <div>
<pop-menu ref="popMenu" :menu="menu" :tip-msg="topTip" disabledColor="#aaa" pop-class="xian-02__pop_tip_station" /> <pop-menu ref="popMenu" :menu="menu" :tip-msg="topTip" disabled-color="#aaa" pop-class="xian-02__pop_tip_station" />
<route-detail ref="routeDetail" /> <route-detail ref="routeDetail" />
<notice-info ref="noticeInfo" pop-class="xian-02__system" /> <notice-info ref="noticeInfo" pop-class="xian-02__system" />
<set-fault ref="setFault" pop-class="xian-02__system" /> <set-fault ref="setFault" pop-class="xian-02__system" />
@ -17,6 +17,7 @@ import CMD from '@/scripts/cmdPlugin/CommandEnum';
import { mapGetters } from 'vuex'; import { mapGetters } from 'vuex';
import { OperationEvent } from '@/scripts/cmdPlugin/OperationHandler'; import { OperationEvent } from '@/scripts/cmdPlugin/OperationHandler';
import { DeviceMenu, OperateMode } from '@/scripts/ConstDic'; import { DeviceMenu, OperateMode } from '@/scripts/ConstDic';
import { judgeStationControl } from '@/jmapNew/theme/components/utils/menuJudge.js';
export default { export default {
name: 'SignalMenu', name: 'SignalMenu',
@ -32,152 +33,136 @@ export default {
default() { default() {
return null; return null;
} }
},
work: {
type: String,
default() {
return '';
}
} }
}, },
data() { data() {
return { return {
topTip: '', topTip: '',
menu: [], menu: [],
menuNormal: { menuNormal: [
Local: [ {
{ label: '始端/终端选择',
label: '始端/终端选择', handler: this.arrangementRoute,
handler: this.arrangementRoute, cmdType: CMD.Signal.CMD_SIGNAL_SET_ROUTE,
cmdType: CMD.Signal.CMD_SIGNAL_SET_ROUTE isDisabled: (signal, work) => {
}, if (work === 'localWork') {
{ return signal.lock === 1;
label: '取消进路', } else {
handler: this.cancelTrainRoute, return signal.lock === 1;
cmdType: CMD.Signal.CMD_SIGNAL_CANCEL_ROUTE }
},
{
label: '开放自动进路',
handler: this.setAutoInterlock,
cmdType: CMD.Signal.CMD_SIGNAL_SET_CI_AUTO
},
{
label: '关闭自动进路',
handler: this.cancelAutoInterlock,
cmdType: CMD.Signal.CMD_SIGNAL_CANCEL_CI_AUTO
},
{
label: '终端信号封锁',
handler: this.lock,
cmdType: CMD.Signal.CMD_SIGNAL_BLOCK
},
{
label: '终端信号解封',
handler: this.unlock,
cmdType: CMD.Signal.CMD_SIGNAL_UNBLOCK
},
{
label: '引导信号',
handler: this.guideSignal,
cmdType: CMD.Signal.CMD_SIGNAL_ROUTE_GUIDE
},
// disabled
{
label: '设备标签',
disabled: true,
children: [
{
label: '创建设备标签',
disabled: true,
handler: this.undeveloped
},
{
label: '查看设备标签',
disabled: true,
handler: this.undeveloped
},
{
label: '更改设备标签',
disabled: true,
handler: this.undeveloped
},
{
label: '删除设备标签',
disabled: true,
handler: this.undeveloped
}
]
},
{
label: '帮助',
handler: this.detail,
cmdType: CMD.Signal.CMD_SIGNAL_DETAIL
} }
], },
Center: [ {
{ label: '取消进路',
label: '始端/终端选择', handler: this.cancelTrainRoute,
handler: this.arrangementRoute, cmdType: CMD.Signal.CMD_SIGNAL_CANCEL_ROUTE,
cmdType: CMD.Signal.CMD_SIGNAL_SET_ROUTE isDisabled: (signal, work) => {
}, if (work === 'localWork') {
{ return signal.lock !== 1;
label: '取消进路', } else {
handler: this.cancelTrainRoute, return signal.lock !== 1;
cmdType: CMD.Signal.CMD_SIGNAL_CANCEL_ROUTE }
},
{
label: '开放自动进路',
handler: this.setAutoInterlock,
cmdType: CMD.Signal.CMD_SIGNAL_SET_CI_AUTO
},
{
label: '关闭自动进路',
handler: this.cancelAutoInterlock,
cmdType: CMD.Signal.CMD_SIGNAL_CANCEL_CI_AUTO
},
{
label: '终端信号封锁',
handler: this.lock,
cmdType: CMD.Signal.CMD_SIGNAL_BLOCK
},
{
label: '终端信号解封',
handler: this.unlock,
cmdType: CMD.Signal.CMD_SIGNAL_UNBLOCK
},
{
label: '引导信号',
handler: this.guideSignal,
cmdType: CMD.Signal.CMD_SIGNAL_ROUTE_GUIDE
},
{
// disabled
label: '设备标签',
disabled: true,
children: [
{
label: '创建设备标签',
disabled: true,
handler: this.undeveloped
},
{
label: '查看设备标签',
disabled: true,
handler: this.undeveloped
},
{
label: '更改设备标签',
disabled: true,
handler: this.undeveloped
},
{
label: '删除设备标签',
disabled: true,
handler: this.undeveloped
}
]
},
{
label: '帮助',
handler: this.detail,
cmdType: CMD.Signal.CMD_SIGNAL_DETAIL
} }
] },
}, {
label: '开放自动进路',
handler: this.setAutoInterlock,
cmdType: CMD.Signal.CMD_SIGNAL_SET_CI_AUTO,
isDisabled: (signal, work) => {
if (work === 'localWork') {
return signal.fleetMode === 1;
} else {
return signal.fleetMode === 1;
}
}
},
{
label: '关闭自动进路',
handler: this.cancelAutoInterlock,
cmdType: CMD.Signal.CMD_SIGNAL_CANCEL_CI_AUTO,
isDisabled: (signal, work) => {
if (work === 'localWork') {
return signal.fleetMode !== 1;
} else {
return signal.fleetMode !== 1;
}
}
},
{
label: '终端信号封锁',
handler: this.lock,
cmdType: CMD.Signal.CMD_SIGNAL_BLOCK,
isDisabled: (signal, work) => {
if (work === 'localWork') {
return signal.blockade === 1;
} else {
return signal.blockade === 1;
}
}
},
{
label: '终端信号解封',
handler: this.unlock,
cmdType: CMD.Signal.CMD_SIGNAL_UNBLOCK,
isDisabled: (signal, work) => {
if (work === 'localWork') {
return signal.blockade !== 1;
} else {
return signal.blockade !== 1;
}
}
},
{
label: '引导信号',
handler: this.guideSignal,
cmdType: CMD.Signal.CMD_SIGNAL_ROUTE_GUIDE,
isDisabled: (signal, work) => {
return false;
}
},
// disabled
{
label: '设备标签',
disabled: true,
isDisabled: (signal, work) => true,
children: [
{
label: '创建设备标签',
disabled: true,
handler: this.undeveloped
},
{
label: '查看设备标签',
disabled: true,
handler: this.undeveloped
},
{
label: '更改设备标签',
disabled: true,
handler: this.undeveloped
},
{
label: '删除设备标签',
disabled: true,
handler: this.undeveloped
}
]
},
{
label: '帮助',
handler: this.detail,
cmdType: CMD.Signal.CMD_SIGNAL_DETAIL,
isDisabled: (signal, work) => {
return false;
}
}
],
menuEnabled: [ menuEnabled: [
{ {
label: '使能', label: '使能',
@ -208,11 +193,7 @@ export default {
handler: this.triggerFaultManagement, handler: this.triggerFaultManagement,
cmdType: CMD.Fault.CMD_TRIGGER_FAULT cmdType: CMD.Fault.CMD_TRIGGER_FAULT
} }
], ]
prdType2ControlModeMap: {
'01': 'Local',
'02': 'Center'
}
}; };
}, },
computed: { computed: {
@ -227,9 +208,6 @@ export default {
'routeList', 'routeList',
'routeData' 'routeData'
]), ]),
prdType() {
return this.$store.state.training.prdType;
},
group() { group() {
return this.$route.query.group; return this.$route.query.group;
} }
@ -245,9 +223,9 @@ export default {
} }
}, },
'$store.state.menuOperation.leftClickCount': function (val) { '$store.state.menuOperation.leftClickCount': function (val) {
// const control = MenuContextHandler.getStationControl(this.selected); // const control = MenuContextHandler.getStationControl(this.selected);
const controlMode = this.prdType2ControlModeMap[this.prdType]; const centralStation = this.$store.getters['map/getDeviceByCode'](this.selected.stationCode);
if (this.selected._type === 'Signal' && control.controlMode == controlMode) { if (this.selected._type === 'Signal' && this.selected.controlMode == centralStation.controlMode) {
this.arrangementRoute(); this.arrangementRoute();
} }
} }
@ -260,7 +238,14 @@ export default {
}; };
}, },
initMenu() { initMenu() {
this.menu = MenuContextHandler.covert2(this.menuNormal); // this.menu = MenuContextHandler.covert2(this.menuNormal);
this.menu = [];
this.menuNormal.forEach(menuItem => {
const status = judgeStationControl(this.selected.belongStationCode, this.selected.stationCode, this.work);
menuItem.disabled = menuItem.isDisabled ? menuItem.isDisabled(this.selected, this.work) || !status : false;
menuItem.show = menuItem.isShow ? menuItem.isShow(this.selected, this.work) : true;
this.menu.push(menuItem);
});
// this.menu = this.menuNormal.Center; // this.menu = this.menuNormal.Center;
// //
if (this.operatemode === OperateMode.FAULT) { if (this.operatemode === OperateMode.FAULT) {

View File

@ -32,165 +32,188 @@ export default {
default() { default() {
return null; return null;
} }
},
work: {
type: String,
default() {
return '';
}
} }
}, },
data() { data() {
return { return {
topTip: '车站 (CP)', topTip: '车站 (CP)',
menu: [], menu: [],
menuNormal: { menuNormal: [
Local: [ {
{ label: '本地控制许可',
label: '本地控制许可', children: [
children: [ {
{ label: '请求',
label: '请求', handler: this.setStationControl,
handler: this.setStationControl, cmdType: this.work === 'localWork' ? CMD.ControlConvertMenu.CMD_CM_APPLY_FOR_STATION_CONTROL : CMD.ControlConvertMenu.CMD_CM_APPLY_FOR_CENTER_CONTROL,
cmdType: CMD.ControlConvertMenu.CMD_CM_APPLY_FOR_STATION_CONTROL isDisabled: (station, work) => {
}, if (work === 'localWork') {
// { return station.controlMode !== 'Center';
// label: '', } else {
// handler: this.undeveloped return station.controlMode === 'Center';
// }, }
{
label: '取消',
handler: this.setCenterControl,
cmdType: CMD.ControlConvertMenu.CMD_CM_APPLY_FOR_CENTER_CONTROL
},
// /** */
// CMD_CM_EMERGENCY_STATION_CONTROL: {value:'CM_Emergency_Station_Control', label: ''},
{
label: '紧急本地控制',
handler: this.setEmergencyControl,
cmdType: CMD.ControlConvertMenu.CMD_CM_EMERGENCY_STATION_CONTROL
} }
] },
{
// disabled
label: '授权',
disabled: true,
handler: this.undeveloped,
isShow: (station, work) => false
},
{
label: '取消',
handler: this.setCenterControl,
cmdType: CMD.ControlConvertMenu.CMD_CM_APPLY_FOR_CENTER_CONTROL,
isDisabled: (station, work) => {
if (work === 'localWork') {
return station.controlMode === 'Center';
} else {
return station.controlMode !== 'Center';
}
},
isShow: (station, work) => {
return work === 'localWork';
}
},
// /** */
// CMD_CM_EMERGENCY_STATION_CONTROL: {value:'CM_Emergency_Station_Control', label: ''},
{
label: '紧急本地控制',
handler: this.setEmergencyControl,
cmdType: CMD.ControlConvertMenu.CMD_CM_EMERGENCY_STATION_CONTROL,
isDisabled: (station, work) => {
return station.controlMode === 'Emergency';
},
isShow: (station, work) => {
return work === 'localWork';
}
}
]
},
{
label: '进路模式',
children: [
{
label: '自动',
handler: this.atsAutoControlALL,
cmdType: CMD.Station.CMD_STATION_OPEN_AUTO_SETTING,
isDisabled: (station, work) => {
return false;
}
},
{
label: '人工',
handler: this.humanControlALL,
cmdType: CMD.Station.CMD_STATION_CLOSE_AUTO_SETTING,
isDisabled: (station, work) => {
return false;
}
}
],
isShow: (station, work) => {
return work === 'dispatchWork';
} }
], },
Center: [ {
{ // disabled
label: '本地控制许可', label: '通信',
children: [ disabled: true,
{ children: [
label: '请求', {
handler: this.setStationControl, label: '本地',
cmdType: CMD.ControlConvertMenu.CMD_CM_APPLY_FOR_CENTER_CONTROL disabled: true,
}, handler: this.undeveloped,
{ isDisabled: (station, work) => true
// disabled },
label: '授权', {
disabled: true, label: '重新连接',
handler: this.undeveloped disabled: true,
}, handler: this.undeveloped,
{ isDisabled: (station, work) => true
// disabled }
label: '取消', ],
disabled: true, isDisabled: (station, work) => true,
handler: this.undeveloped isShow: (station, work) => work === 'dispatchWork'
}, },
{ // {
// disabled // label: '',
label: '紧急本地控制', // children: [
disabled: true, // {
handler: this.undeveloped // label: '线',
} // handler: this.setPriorityStrategy
] // },
}, // {
{ // label: '线',
label: '进路模式', // handler: this.setLineStrategy
children: [ // },
{ // {
label: '自动', // label: '线',
handler: this.atsAutoControlALL, // handler: this.setLateralStrategy
cmdType: CMD.Station.CMD_STATION_OPEN_AUTO_SETTING // }
}, // ]
{ // },
label: '人工', {
handler: this.humanControlALL, // disabled
cmdType: CMD.Station.CMD_STATION_CLOSE_AUTO_SETTING label: '设备标签',
} disabled: true,
] children: [
}, {
{ label: '创建设备标签',
// disabled disabled: true,
label: '通信', handler: this.undeveloped,
disabled: true, isDisabled: (station, work) => true
children: [ },
{ {
label: '本地', label: '查看设备标签',
disabled: true, disabled: true,
handler: this.undeveloped handler: this.undeveloped,
}, isDisabled: (station, work) => true
{ },
label: '重新连接', {
disabled: true, label: '更改设备标签',
handler: this.undeveloped disabled: true,
} handler: this.undeveloped,
] isDisabled: (station, work) => true
}, },
// { {
// label: '', label: '删除设备标签',
// children: [ disabled: true,
// { handler: this.undeveloped,
// label: '线', isDisabled: (station, work) => true
// handler: this.setPriorityStrategy }
// }, ],
// { isDisabled: (station, work) => true,
// label: '线', isShow: (station, work) => work === 'dispatchWork'
// handler: this.setLineStrategy },
// }, {
// { // disabled
// label: '线', label: '取消验证',
// handler: this.setLateralStrategy disabled: true,
// } children: [
// ] {
// }, label: '取消验证',
{ disabled: true,
// disabled handler: this.undeveloped,
label: '设备标签', isDisabled: (station, work) => true
disabled: true, },
children: [ {
{ label: '恢复验证',
label: '创建设备标签', disabled: true,
disabled: true, handler: this.undeveloped,
handler: this.undeveloped isDisabled: (station, work) => true
}, }
{ ],
label: '查看设备标签', isDisabled: (station, work) => true,
disabled: true, isShow: (station, work) => work === 'dispatchWork'
handler: this.undeveloped }
}, ],
{
label: '更改设备标签',
disabled: true,
handler: this.undeveloped
},
{
label: '删除设备标签',
disabled: true,
handler: this.undeveloped
}
]
},
{
// disabled
label: '取消验证',
disabled: true,
children: [
{
label: '取消验证',
disabled: true,
handler: this.undeveloped
},
{
label: '恢复验证',
disabled: true,
handler: this.undeveloped
}
]
}
]
},
menuForce: [ menuForce: [
{ {
label: '设置ZC故障', label: '设置ZC故障',
@ -246,6 +269,22 @@ export default {
// this.menu = [...this.menuNormal.Center]; // this.menu = [...this.menuNormal.Center];
// //
// this.menu = MenuContextHandler.covert(this.menuNormal); // this.menu = MenuContextHandler.covert(this.menuNormal);
const selected = this.selected;
const work = this.work;
function setDisabledShow(item) {
if (item.children) {
item.children.forEach(ii => {
setDisabledShow(ii);
});
}
item.disabled = item.isDisabled ? item.isDisabled(selected, work) : false;
item.show = item.isShow ? item.isShow(selected, work) : true;
}
this.menu = [];
this.menuNormal.forEach(menuItem => {
setDisabledShow(menuItem);
this.menu.push(menuItem);
});
if (this.selected.reentry) { if (this.selected.reentry) {
const menuAdd = { const menuAdd = {
label: '折返模式', label: '折返模式',

View File

@ -1,6 +1,6 @@
<template> <template>
<div> <div>
<pop-menu ref="popMenu" :menu="menu" disabledColor="#aaa"/> <pop-menu ref="popMenu" :menu="menu" disabled-color="#aaa" />
<station-control ref="stationControl" /> <station-control ref="stationControl" />
</div> </div>
</template> </template>
@ -25,15 +25,18 @@ export default {
default() { default() {
return null; return null;
} }
},
work: {
type: String,
default() {
return '';
}
} }
}, },
data() { data() {
return { return {
menu: [], menu: [],
menuNormal: { menuNormal: [],
Local: [],
Center: []
},
menuForce: [ menuForce: [
] ]
}; };
@ -66,6 +69,12 @@ export default {
initMenu() { initMenu() {
// //
// this.menu = MenuContextHandler.covert(this.menuNormal); // this.menu = MenuContextHandler.covert(this.menuNormal);
this.menu = [];
this.menuNormal.forEach(menuItem => {
menuItem.disabled = menuItem.isDisabled ? menuItem.isDisabled(this.selected, this.work) : false;
menuItem.show = menuItem.isShow ? menuItem.isShow(this.selected, this.work) : true;
this.menu.push(menuItem);
});
// //
if (this.operatemode === OperateMode.FAULT) { if (this.operatemode === OperateMode.FAULT) {
this.menu = this.menuForce; this.menu = this.menuForce;

View File

@ -1,6 +1,6 @@
<template> <template>
<div> <div>
<pop-menu ref="popMenu" :menu="menu" pop-class="xian-02__pop_tip_station" :tip-msg="topTip" disabledColor="#aaa" /> <pop-menu ref="popMenu" :menu="menu" pop-class="xian-02__pop_tip_station" :tip-msg="topTip" disabled-color="#aaa" />
<switch-control ref="switchControl" pop-class="xian-02__system" /> <switch-control ref="switchControl" pop-class="xian-02__system" />
<section-un-lock ref="sectionUnLock" pop-class="xian-02__system" /> <section-un-lock ref="sectionUnLock" pop-class="xian-02__system" />
<speed-limit-control ref="speedLimitControl" pop-class="xian-02__system" /> <speed-limit-control ref="speedLimitControl" pop-class="xian-02__system" />
@ -24,6 +24,7 @@ import CMD from '@/scripts/cmdPlugin/CommandEnum';
import { OperationEvent } from '@/scripts/cmdPlugin/OperationHandler'; import { OperationEvent } from '@/scripts/cmdPlugin/OperationHandler';
import { DeviceMenu, OperateMode } from '@/scripts/ConstDic'; import { DeviceMenu, OperateMode } from '@/scripts/ConstDic';
import {menuOperate, commitOperate} from '@/jmapNew/theme/components/utils/menuOperate'; import {menuOperate, commitOperate} from '@/jmapNew/theme/components/utils/menuOperate';
import { judgeStationControl } from '@/jmapNew/theme/components/utils/menuJudge.js';
export default { export default {
name: 'SwitchMenu', name: 'SwitchMenu',
@ -42,100 +43,108 @@ export default {
default() { default() {
return null; return null;
} }
},
work: {
type: String,
default() {
return '';
}
} }
}, },
data() { data() {
return { return {
topTip: '', topTip: '',
menu: [], menu: [],
menuNormal: { menuNormal: [
Local: [ {
{ label: '道岔定位',
label: '道岔定位', handler: this.locate,
handler: this.locate, cmdType: CMD.Switch.CMD_SWITCH_NORMAL_POSITION,
cmdType: CMD.Switch.CMD_SWITCH_NORMAL_POSITION isDisabled: (station, work) => {
}, if (work === 'localWork') {
{ return station.normalPosition === 1;
label: '道岔反位', } else {
handler: this.reverse, return station.normalPosition === 1;
cmdType: CMD.Switch.CMD_SWITCH_REVERSE_POSITION }
},
{
label: '道岔单锁',
handler: this.lock,
cmdType: CMD.Switch.CMD_SWITCH_SINGLE_LOCK
},
{
label: '道岔单解',
handler: this.unlock,
cmdType: CMD.Switch.CMD_SWITCH_SINGLE_UNLOCK
} }
// { },
// label: '', {
// handler: this.block, label: '道岔反位',
// cmdType: CMD.Switch.CMD_SWITCH_BLOCK handler: this.reverse,
// }, cmdType: CMD.Switch.CMD_SWITCH_REVERSE_POSITION,
// { isDisabled: (station, work) => {
// label: '', if (work === 'localWork') {
// handler: this.unblock, return station.reversePosition === 1;
// cmdType: CMD.Switch.CMD_SWITCH_UNBLOCK } else {
// } return station.reversePosition === 1;
], }
Center: [
{
label: '道岔定位',
handler: this.locate,
cmdType: CMD.Switch.CMD_SWITCH_NORMAL_POSITION
},
{
label: '道岔反位',
handler: this.reverse,
cmdType: CMD.Switch.CMD_SWITCH_REVERSE_POSITION
},
{
label: '道岔单锁',
handler: this.lock,
cmdType: CMD.Switch.CMD_SWITCH_SINGLE_LOCK
},
{
label: '道岔单解',
handler: this.unlock,
cmdType: CMD.Switch.CMD_SWITCH_SINGLE_UNLOCK
},
{
// disabled
label: '设备标签',
disabled: true,
children: [
{
label: '创建设备标签',
disabled: true,
handler: this.undeveloped
},
{
label: '查看设备标签',
disabled: true,
handler: this.undeveloped
},
{
label: '更改设备标签',
disabled: true,
handler: this.undeveloped
},
{
label: '删除设备标签',
disabled: true,
handler: this.undeveloped
}
]
},
{
label: '帮助',
disabled: true,
handler: this.undeveloped
} }
] },
}, {
label: '道岔单锁',
handler: this.lock,
cmdType: CMD.Switch.CMD_SWITCH_SINGLE_LOCK,
isDisabled: (station, work) => {
if (work === 'localWork') {
return station.singleLock === 1;
} else {
return station.singleLock === 1;
}
}
},
{
label: '道岔单解',
handler: this.unlock,
cmdType: CMD.Switch.CMD_SWITCH_SINGLE_UNLOCK,
isDisabled: (station, work) => {
if (work === 'localWork') {
return station.singleLock !== 1;
} else {
return station.singleLock !== 1;
}
}
},
{
// disabled
label: '设备标签',
disabled: true,
children: [
{
label: '创建设备标签',
disabled: true,
handler: this.undeveloped
},
{
label: '查看设备标签',
disabled: true,
handler: this.undeveloped
},
{
label: '更改设备标签',
disabled: true,
handler: this.undeveloped
},
{
label: '删除设备标签',
disabled: true,
handler: this.undeveloped
}
],
isDisabled: (station, work) => {
return true;
},
isShow: (station, work) => work === 'dispatchWork'
},
{
label: '帮助',
disabled: true,
handler: this.undeveloped,
isDisabled: (station, work) => {
return true;
},
isShow: (station, work) => work === 'dispatchWork'
}
],
menuEnabled: [ menuEnabled: [
{ {
label: '使能', label: '使能',
@ -199,6 +208,13 @@ export default {
initMenu() { initMenu() {
// //
// this.menu = MenuContextHandler.covert2(this.menuNormal); // this.menu = MenuContextHandler.covert2(this.menuNormal);
this.menu = [];
this.menuNormal.forEach(menuItem => {
const status = judgeStationControl(this.selected.belongStationCode, this.selected.stationCode, this.work);
menuItem.disabled = menuItem.isDisabled ? menuItem.isDisabled(this.selected, this.work) || !status : false;
menuItem.show = menuItem.isShow ? menuItem.isShow(this.selected, this.work) : true;
this.menu.push(menuItem);
});
// //
if (this.operatemode === OperateMode.FAULT) { if (this.operatemode === OperateMode.FAULT) {
if (!this.$store.state.scriptRecord.bgSet) { if (!this.$store.state.scriptRecord.bgSet) {

View File

@ -60,172 +60,181 @@ export default {
default() { default() {
return null; return null;
} }
},
work: {
type: String,
default() {
return '';
}
} }
}, },
data() { data() {
return { return {
topTip: '', topTip: '',
menu: [], menu: [],
menuNormal: { menuNormal: [
Local: [ {
], label: '追踪号',
Center: [ children: [
{ {
label: '追踪号', label: '目的地ID',
children: [ handler: this.updateDestination,
{ cmdType: CMD.TrainWindow.CMD_TRAIN_UPDATE_TYPE
label: '目的地ID', },
handler: this.updateDestination, {
cmdType: CMD.TrainWindow.CMD_TRAIN_UPDATE_TYPE label: '删除ID',
}, handler: this.deletDestionation,
{ cmdType: CMD.TrainWindow.CMD_TRAIN_UPDATE_TYPE
label: '删除ID', },
handler: this.deletDestionation, {
cmdType: CMD.TrainWindow.CMD_TRAIN_UPDATE_TYPE label: '更改追踪号',
}, handler: this.updateTid,
{ cmdType: CMD.TrainWindow.CMD_TRAIN_UPDATE_TYPE
label: '更改追踪号', },
handler: this.updateTid, {
cmdType: CMD.TrainWindow.CMD_TRAIN_UPDATE_TYPE label: '交换追踪号',
}, handler: this.switchTid,
{ cmdType: CMD.TrainWindow.CMD_TRAIN_UPDATE_TYPE
label: '交换追踪号', },
handler: this.switchTid, {
cmdType: CMD.TrainWindow.CMD_TRAIN_UPDATE_TYPE label: '运行等级',
}, handler: this.handleRunLevel,
{ cmdType: CMD.TrainWindow.CMD_TRAIN_UPDATE_TYPE
label: '运行等级', },
handler: this.handleRunLevel, {
cmdType: CMD.TrainWindow.CMD_TRAIN_UPDATE_TYPE label: '列车模式',
}, handler: this.setTrainMode,
{ cmdType: CMD.TrainWindow.CMD_TRAIN_UPDATE_TYPE
label: '列车模式', },
handler: this.setTrainMode, {
cmdType: CMD.TrainWindow.CMD_TRAIN_UPDATE_TYPE label: '惰性模式',
}, handler: this.setIdleRunningMode,
{ cmdType: CMD.TrainWindow.CMD_TRAIN_UPDATE_TYPE
label: '惰性模式', },
handler: this.setIdleRunningMode, {
cmdType: CMD.TrainWindow.CMD_TRAIN_UPDATE_TYPE label: '旁路模式',
}, handler: this.undeveloped,
{ cmdType: CMD.TrainWindow.CMD_TRAIN_UPDATE_TYPE
label: '旁路模式', }
handler: this.undeveloped, ],
cmdType: CMD.TrainWindow.CMD_TRAIN_UPDATE_TYPE isShow: (stand, work) => work === 'dispatchWork'
} },
] {
}, label: '列车明细',
{ handler: this.getTrainDetail,
label: '列车明细', cmdType: CMD.TrainWindow.CMD_TRAIN_UPDATE_TYPE,
handler: this.getTrainDetail, isShow: (stand, work) => work === 'dispatchWork'
cmdType: CMD.TrainWindow.CMD_TRAIN_UPDATE_TYPE },
}, {
{ label: '请求',
label: '请求', children: [
children: [ {
{ label: '扣车/放行',
label: '扣车/放行', children:[
children:[ {
{ label: '扣车',
label: '扣车', handler: this.setDetainTrain,
handler: this.setDetainTrain, cmdType: CMD.TrainWindow.CMD_TRAIN_UPDATE_TYPE
cmdType: CMD.TrainWindow.CMD_TRAIN_UPDATE_TYPE },
}, {
{ label: '发车 ',
label: '发车 ', handler: this.setTrainDeparture,
handler: this.setTrainDeparture, cmdType: CMD.TrainWindow.CMD_TRAIN_UPDATE_TYPE
cmdType: CMD.TrainWindow.CMD_TRAIN_UPDATE_TYPE }
} ]
] },
}, {
{ label: '停车/放行',
label: '停车/放行', children:[
children:[ {
{ label: '停车',
label: '停车', handler: this.trainOrderStop
handler: this.trainOrderStop },
}, {
{ label: '放行 ',
label: '放行 ', handler: this.trainCancleOrderStop
handler: this.trainCancleOrderStop }
} ]
] // cmdType: CMD.TrainWindow.CMD_TRAIN_UPDATE_TYPE
// cmdType: CMD.TrainWindow.CMD_TRAIN_UPDATE_TYPE },
}, {
{ label: '就绪状态',
label: '就绪状态', handler: this.undeveloped,
handler: this.undeveloped, cmdType: CMD.TrainWindow.CMD_TRAIN_UPDATE_TYPE
cmdType: CMD.TrainWindow.CMD_TRAIN_UPDATE_TYPE },
}, {
{ label: '测试',
label: '测试', handler: this.undeveloped,
handler: this.undeveloped, cmdType: CMD.TrainWindow.CMD_TRAIN_UPDATE_TYPE
cmdType: CMD.TrainWindow.CMD_TRAIN_UPDATE_TYPE },
}, {
{ label: '救援列车',
label: '救援列车', handler: this.undeveloped,
handler: this.undeveloped, cmdType: CMD.TrainWindow.CMD_TRAIN_UPDATE_TYPE
cmdType: CMD.TrainWindow.CMD_TRAIN_UPDATE_TYPE },
}, {
{ label: '开车门',
label: '开车门', handler: this.undeveloped,
handler: this.undeveloped, cmdType: CMD.TrainWindow.CMD_TRAIN_UPDATE_TYPE
cmdType: CMD.TrainWindow.CMD_TRAIN_UPDATE_TYPE },
}, {
{ label: '关车门',
label: '关车门', handler: this.undeveloped,
handler: this.undeveloped, cmdType: CMD.TrainWindow.CMD_TRAIN_UPDATE_TYPE
cmdType: CMD.TrainWindow.CMD_TRAIN_UPDATE_TYPE }
} ],
] isShow: (stand, work) => work === 'dispatchWork'
}, },
{ {
label: '设备标签', label: '设备标签',
children: [ children: [
{ {
label: '创建设备标签', label: '创建设备标签',
handler: this.undeveloped, handler: this.undeveloped,
cmdType: CMD.TrainWindow.CMD_TRAIN_UPDATE_TYPE cmdType: CMD.TrainWindow.CMD_TRAIN_UPDATE_TYPE
}, },
{ {
label: '查看设备标签', label: '查看设备标签',
handler: this.undeveloped, handler: this.undeveloped,
cmdType: CMD.TrainWindow.CMD_TRAIN_UPDATE_TYPE cmdType: CMD.TrainWindow.CMD_TRAIN_UPDATE_TYPE
}, },
{ {
label: '更改设备标签', label: '更改设备标签',
handler: this.undeveloped, handler: this.undeveloped,
cmdType: CMD.TrainWindow.CMD_TRAIN_UPDATE_TYPE cmdType: CMD.TrainWindow.CMD_TRAIN_UPDATE_TYPE
}, },
{ {
label: '删除设备标签', label: '删除设备标签',
handler: this.undeveloped, handler: this.undeveloped,
cmdType: CMD.TrainWindow.CMD_TRAIN_UPDATE_TYPE cmdType: CMD.TrainWindow.CMD_TRAIN_UPDATE_TYPE
} }
] ],
}, isShow: (stand, work) => work === 'dispatchWork'
{ },
label: '列车报警确认', {
children: [ label: '列车报警确认',
{ children: [
label: '完整性报警确认', {
handler: this.trainAlertor, label: '完整性报警确认',
cmdType: CMD.TrainWindow.CMD_TRAIN_UPDATE_TYPE handler: this.trainAlertor,
} cmdType: CMD.TrainWindow.CMD_TRAIN_UPDATE_TYPE
] }
}, ],
{ isShow: (stand, work) => work === 'dispatchWork'
label: '更新列车计划', },
handler: this.updateTrainPlan, {
cmdType: CMD.TrainWindow.CMD_TRAIN_UPDATE_TYPE label: '更新列车计划',
}, handler: this.updateTrainPlan,
{ cmdType: CMD.TrainWindow.CMD_TRAIN_UPDATE_TYPE,
label: '帮助', isShow: (stand, work) => work === 'dispatchWork'
handler: this.undeveloped, },
cmdType: CMD.TrainWindow.CMD_TRAIN_UPDATE_TYPE {
} label: '帮助',
] handler: this.undeveloped,
}, cmdType: CMD.TrainWindow.CMD_TRAIN_UPDATE_TYPE,
isShow: (stand, work) => work === 'dispatchWork'
}
],
menuForce: [ menuForce: [
{ {
label: '设置故障', label: '设置故障',
@ -331,8 +340,15 @@ export default {
}, },
initMenu() { initMenu() {
// //
if (this.$store.state.training.prdType === '02') { if (this.work === 'dispatchWork') {
this.menu = this.menuNormal.Center; // if (this.$store.state.training.prdType === '02') {
// this.menu = this.menuNormal.Center;
this.menu = [];
this.menuNormal.forEach(menuItem => {
menuItem.disabled = menuItem.isDisabled ? menuItem.isDisabled(this.selected, this.work) : false;
menuItem.show = menuItem.isShow ? menuItem.isShow(this.selected, this.work) : true;
this.menu.push(menuItem);
});
} }
// //
if (this.operatemode === OperateMode.FAULT) { if (this.operatemode === OperateMode.FAULT) {

View File

@ -69,6 +69,14 @@ export default {
components: { components: {
NoticeInfo NoticeInfo
}, },
props: {
work: {
type: String,
default() {
return '';
}
}
},
data() { data() {
return { return {
dialogShow: false, dialogShow: false,
@ -88,10 +96,10 @@ export default {
}, },
computed: { computed: {
targetStatus() { targetStatus() {
if (this.$store.state.training.prdType == '01') { if (this.work == 'localWork') {
return '01'; return '01';
} }
if (this.$store.state.training.prdType == '02') { if (this.work == 'dispatchWork') {
return '02'; return '02';
} }
return ''; return '';
@ -252,7 +260,7 @@ export default {
type: MapDeviceType.StationControl.type, type: MapDeviceType.StationControl.type,
operation: OperationEvent.StationControl.controlResponse.agree.operation, operation: OperationEvent.StationControl.controlResponse.agree.operation,
val: this.selection[0].code, val: this.selection[0].code,
prdType: this.$store.state.training.prdType prdType: this.targetStatus
}; };
this.clearTimer(); this.clearTimer();
@ -273,7 +281,7 @@ export default {
type: MapDeviceType.StationControl.type, type: MapDeviceType.StationControl.type,
operation: OperationEvent.StationControl.controlResponse.refuse.operation, operation: OperationEvent.StationControl.controlResponse.refuse.operation,
val: this.tableData[0].code, val: this.tableData[0].code,
prdType: this.$store.state.training.prdType prdType: this.targetStatus
}; };
this.clearTimer(); this.clearTimer();

View File

@ -1,6 +1,6 @@
<template> <template>
<div> <div>
<pop-menu ref="popMenu" :menu="menu" trigger="click" :tip-msg="topTip" text-align="left" pop-class="xian-02__pop_tip_station" disabledColor="#aaa" /> <pop-menu ref="popMenu" :menu="menu" trigger="click" :tip-msg="topTip" text-align="left" pop-class="xian-02__pop_tip_station" disabled-color="#aaa" />
<notice-info ref="noticeInfo" pop-class="xian-02__system" /> <notice-info ref="noticeInfo" pop-class="xian-02__system" />
<update-stand-plan ref="updateStandPlan" :selected="selected" /> <update-stand-plan ref="updateStandPlan" :selected="selected" />
<warning-confirm ref="warningConfirm" :selected="selected" /> <warning-confirm ref="warningConfirm" :selected="selected" />
@ -22,6 +22,7 @@ import { DeviceMenu, OperateMode } from '@/scripts/ConstDic';
import {menuOperate, commitOperate} from '@/jmapNew/theme/components/utils/menuOperate'; import {menuOperate, commitOperate} from '@/jmapNew/theme/components/utils/menuOperate';
// import MenuContextHandler from '@/scripts/cmdPlugin/MenuContextHandler'; // import MenuContextHandler from '@/scripts/cmdPlugin/MenuContextHandler';
import CMD from '@/scripts/cmdPlugin/CommandEnum'; import CMD from '@/scripts/cmdPlugin/CommandEnum';
import { judgeStationControl } from '@/jmapNew/theme/components/utils/menuJudge.js';
export default { export default {
name: 'StationStandMenu', name: 'StationStandMenu',
@ -39,154 +40,205 @@ export default {
default: () => { default: () => {
return null; return null;
} }
},
work: {
type: String,
default() {
return '';
}
} }
}, },
data() { data() {
return { return {
menu: [], menu: [],
topTip: '', topTip: '',
updateStandPlan: { updateStandPlan: [
Local: [], {
Center: [ label: '更新站台计划',
{ handler: this.setStopTime,
label: '更新站台计划', cmdType: CMD.Stand.CMD_STAND_SET_PARK_TIME,
handler: this.setStopTime, isDisabled: (station, work) => {
cmdType: CMD.Stand.CMD_STAND_SET_PARK_TIME return false;
}, },
{ isShow: (stand, work) => work === 'dispatchWork'
label: '帮助', },
handler: this.setStopTime, {
cmdType: CMD.Stand.CMD_STAND_SET_PARK_TIME label: '帮助',
} handler: this.setStopTime,
] cmdType: CMD.Stand.CMD_STAND_SET_PARK_TIME,
}, isShow: (stand, work) => work === 'dispatchWork'
stopJumping: { }
Local: [], ],
Center: [ stopJumping: [
{ {
label: '列车跳停本站', label: '列车跳停本站',
handler: this.setJumpStop, handler: this.setJumpStop,
cmdType: CMD.Stand.CMD_STAND_SET_JUMP_STOP, cmdType: CMD.Stand.CMD_STAND_SET_JUMP_STOP,
checkDisabled: (selected) => { return selected && (selected.centerHoldTrain||selected.stationHoldTrain) } checkDisabled: (selected) => { return selected && (selected.centerHoldTrain || selected.stationHoldTrain); },
isDisabled: (station, work) => {
return false;
}, },
{ isShow: (stand, work) => work === 'dispatchWork'
label: '取消列车跳停本站', },
handler: this.cancelJumpStop, {
cmdType: CMD.Stand.CMD_STAND_CANCEL_JUMP_STOP label: '取消列车跳停本站',
handler: this.cancelJumpStop,
cmdType: CMD.Stand.CMD_STAND_CANCEL_JUMP_STOP,
isDisabled: (station, work) => {
return false;
}, },
{ isShow: (stand, work) => work === 'dispatchWork'
label: '帮助', },
handler: this.setStopTime, {
cmdType: CMD.Stand.CMD_STAND_VIEW_STATUS label: '帮助',
} handler: this.setStopTime,
] cmdType: CMD.Stand.CMD_STAND_VIEW_STATUS,
}, isDisabled: (station, work) => {
allTrainStopJump: { return false;
Local: [],
Center: [
{
label: '设备标签',
handler: this.setStopTime,
cmdType: CMD.Stand.CMD_STAND_SET_PARK_TIME
}, },
{ isShow: (stand, work) => work === 'dispatchWork'
label: '帮助', }
handler: this.setStopTime, ],
cmdType: CMD.Stand.CMD_STAND_VIEW_STATUS allTrainStopJump: [
} {
] label: '设备标签',
}, handler: this.setStopTime,
standDetain: { cmdType: CMD.Stand.CMD_STAND_SET_PARK_TIME,
Local: [], isDisabled: (station, work) => {
Center: [ return false;
{
label: '扣车',
handler: this.setStandDetain,
cmdType: CMD.Stand.CMD_STAND_SET_HOLD_TRAIN,
checkDisabled: (selected) => { return selected && selected.allSkip }
}, },
{ isShow: (stand, work) => work === 'dispatchWork'
label: '发车', },
handler: this.cancelStandDetain, {
cmdType: CMD.Stand.CMD_STAND_EARLY_DEPART label: '帮助',
} handler: this.setStopTime,
] cmdType: CMD.Stand.CMD_STAND_VIEW_STATUS,
}, isDisabled: (station, work) => {
stoppingProfile: { return false;
Local: [],
Center: [
{
label: '站台停站调整', //
handler: this.setStopTime,
cmdType: CMD.Stand.CMD_STAND_SET_PARK_TIME
}, },
{ isShow: (stand, work) => work === 'dispatchWork'
label: '站台停站', }
handler: this.setStopTime, ],
cmdType: '' standDetain: [
{
label: '扣车',
handler: this.setStandDetain,
cmdType: CMD.Stand.CMD_STAND_SET_HOLD_TRAIN,
checkDisabled: (selected) => { return selected && selected.allSkip; },
isDisabled: (station, work) => {
return false;
}, },
{ isShow: (stand, work) => work === 'dispatchWork'
label: '帮助', },
handler: this.setStopTime, {
cmdType: '' label: '发车',
} handler: this.cancelStandDetain,
] cmdType: CMD.Stand.CMD_STAND_EARLY_DEPART,
}, isDisabled: (station, work) => {
psdInfoConfirm: { return false;
Local: [],
Center: [
{
label: '站台屏蔽门报警确认',
handler: this.confirmPsdWarning,
cmdType: ''
}, },
{ isShow: (stand, work) => work === 'dispatchWork'
label: '帮助', }
handler: this.setStopTime, ],
cmdType: '' stoppingProfile: [
} {
] label: '站台停站调整', //
}, handler: this.setStopTime,
upStopProfile: { cmdType: CMD.Stand.CMD_STAND_SET_PARK_TIME,
Local: [], isDisabled: (station, work) => {
Center: [ return false;
// {
// label: '线',
// handler: this.setStopTime,
// cmdType: ''
// },
{
label: '站台停站曲线',
handler: this.setUpStopProfile,
cmdType: ''
}, },
{ isShow: (stand, work) => work === 'dispatchWork'
label: '帮助', },
handler: this.setUpStopProfile, {
cmdType: '' label: '站台停站',
} handler: this.setStopTime,
] cmdType: '',
}, isDisabled: (station, work) => {
downStopProfile: { return false;
Local: [],
Center: [
// {
// label: '线',
// handler: this.setDownStopProfile,
// cmdType: ''
// },
{
label: '站台停站曲线',
handler: this.setDownStopProfile,
cmdType: ''
}, },
{ isShow: (stand, work) => work === 'dispatchWork'
label: '帮助', },
handler: this.setDownStopProfile, {
cmdType: '' label: '帮助',
} handler: this.setStopTime,
] cmdType: '',
}, isDisabled: (station, work) => {
return false;
},
isShow: (stand, work) => work === 'dispatchWork'
}
],
psdInfoConfirm: [
{
label: '站台屏蔽门报警确认',
handler: this.confirmPsdWarning,
cmdType: '',
isDisabled: (station, work) => {
return false;
},
isShow: (stand, work) => work === 'dispatchWork'
},
{
label: '帮助',
handler: this.setStopTime,
cmdType: '',
isDisabled: (station, work) => {
return false;
},
isShow: (stand, work) => work === 'dispatchWork'
}
],
upStopProfile: [
// {
// label: '线',
// handler: this.setStopTime,
// cmdType: ''
// },
{
label: '站台停站曲线',
handler: this.setUpStopProfile,
cmdType: '',
isDisabled: (station, work) => {
return false;
},
isShow: (stand, work) => work === 'dispatchWork'
},
{
label: '帮助',
handler: this.setUpStopProfile,
cmdType: '',
isDisabled: (station, work) => {
return false;
},
isShow: (stand, work) => work === 'dispatchWork'
}
],
downStopProfile: [
// {
// label: '线',
// handler: this.setDownStopProfile,
// cmdType: ''
// },
{
label: '站台停站曲线',
handler: this.setDownStopProfile,
cmdType: '',
isDisabled: (station, work) => {
return false;
},
isShow: (stand, work) => work === 'dispatchWork'
},
{
label: '帮助',
handler: this.setDownStopProfile,
cmdType: '',
isDisabled: (station, work) => {
return false;
},
isShow: (stand, work) => work === 'dispatchWork'
}
],
menuForce: [ menuForce: [
{ {
label: '设置故障', label: '设置故障',
@ -231,37 +283,49 @@ export default {
self.doClose(); self.doClose();
}; };
}, },
getMenu(type) {
this.menu = [];
this[type].forEach(menuItem => {
const status = judgeStationControl(this.selected.stationCode, this.selected.deviceStationCode, this.work);
menuItem.disabled = menuItem.isDisabled ? menuItem.isDisabled(this.selected, this.work) || !status : false;
menuItem.show = menuItem.isShow ? menuItem.isShow(this.selected, this.work) : true;
this.menu.push(menuItem);
});
},
initMenu(type) { initMenu(type) {
// //
this.topTip = ''; this.topTip = '';
switch (type) { switch (type) {
case 'updateStandPlan': case 'updateStandPlan':
this.menu = this.updateStandPlan.Center; this.menu = this.updateStandPlan;
break; break;
case 'stopJumping': case 'stopJumping':
// this.menu = MenuContextHandler.covertList(this.stopJumping.Center); // this.menu = MenuContextHandler.covertList(this.stopJumping.Center);
this.getMenu(type);
break; break;
case 'allTrainStopJump': case 'allTrainStopJump':
this.topTip = '所有列车跳停本站'; this.topTip = '所有列车跳停本站';
// this.menu = MenuContextHandler.covertList(this.allTrainStopJump.Center); // this.menu = MenuContextHandler.covertList(this.allTrainStopJump.Center);
this.getMenu(type);
break; break;
case 'standDetain': case 'standDetain':
this.topTip = '站台扣车 SET/CANCEL'; this.topTip = '站台扣车 SET/CANCEL';
// this.menu = MenuContextHandler.covertList(this.standDetain.Center); // this.menu = MenuContextHandler.covertList(this.standDetain.Center);
this.getMenu(type);
break; break;
case 'psdInfoConfirm': case 'psdInfoConfirm':
this.topTip = '站台屏蔽门报警-站台屏蔽门信息确认'; this.topTip = '站台屏蔽门报警-站台屏蔽门信息确认';
this.menu = this.psdInfoConfirm.Center; this.menu = this.psdInfoConfirm;
break; break;
case 'upStopProfile': case 'upStopProfile':
this.menu = this.upStopProfile.Center; this.menu = this.upStopProfile;
break; break;
case 'downStopProfile': case 'downStopProfile':
this.menu = this.downStopProfile.Center; this.menu = this.downStopProfile;
break; break;
} }
// //
if (this.operatemode === OperateMode.FAULT) { if (this.operatemode === OperateMode.FAULT) {
this.menu = this.menuForce; this.menu = this.menuForce;
} }

View File

@ -23,11 +23,11 @@ export function handlerUrl() {
let OSS_URL; let OSS_URL;
if (process.env.NODE_ENV === 'development') { if (process.env.NODE_ENV === 'development') {
// 开发分支 // 开发分支
// BASE_API = 'http://192.168.3.233/rtss-server'; BASE_API = 'http://192.168.3.233/rtss-server';
// BASE_API = 'https://joylink.club/jlcloud'; // BASE_API = 'https://joylink.club/jlcloud';
// BASE_API = 'https://test.joylink.club/jlcloud'; // BASE_API = 'https://test.joylink.club/jlcloud';
// BASE_API = 'http://114.116.51.125/jlcloud'; // BASE_API = 'http://114.116.51.125/jlcloud';
BASE_API = 'http://192.168.3.90:9000'; // 周寅 // BASE_API = 'http://192.168.3.90:9000'; // 周寅
// BASE_API = 'http://192.168.3.94:9000'; // 旭强 // BASE_API = 'http://192.168.3.94:9000'; // 旭强
// BASE_API = 'http://192.168.3.15:9000'; // 张赛 // BASE_API = 'http://192.168.3.15:9000'; // 张赛
// BASE_API = 'http://192.168.3.5:9000'; // 夏增彬 // BASE_API = 'http://192.168.3.5:9000'; // 夏增彬

View File

@ -28,6 +28,7 @@
</template> </template>
<script> <script>
import {queryMapListByUser} from '../../api/jmap/map'; import {queryMapListByUser} from '../../api/jmap/map';
import { EventBus } from '@/scripts/event-bus';
export default { export default {
name: 'DemonList', name: 'DemonList',
components: { components: {
@ -45,11 +46,14 @@ export default {
this.loading = true; this.loading = true;
queryMapListByUser().then(resp => { queryMapListByUser().then(resp => {
this.mapList = resp.data; this.mapList = resp.data;
EventBus.$emit('setMapList', this.mapList);
if (this.mapList && this.mapList.length && this.$route.path.includes('simulation/simulationIndex')) { if (this.mapList && this.mapList.length && this.$route.path.includes('simulation/simulationIndex')) {
const map = this.mapList[0]; const map = this.mapList[0];
const path = `/trainingPlatform/simulation/${map.id}?lineCode=${map.lineCode}`; const path = `/trainingPlatform/simulation/${map.id}?lineCode=${map.lineCode}`;
this.defaultIndex = path; this.defaultIndex = path;
this.$router.push(path); this.$router.push(path);
} else if (this.$route.params.mapId) {
this.defaultIndex = this.$route.fullPath;
} }
this.loading = false; this.loading = false;
}).catch(e => { }).catch(e => {

View File

@ -1,34 +1,37 @@
<template> <template>
<el-tabs v-model="activeName" style="height: 100%;margin: 10px;" type="border-card"> <div style="height: 100%;width: 100%;">
<el-tab-pane label="功能" name="first" style="height: 100%;"> <div style="height: 50px;text-align: center;line-height: 50px;font-size: 26px;font-weight: bolder;">{{ mapName }}</div>
<div style="display: flex;flex-wrap:wrap; justify-content:center;height: 100%;overflow-y: auto;padding-bottom:30px"> <el-tabs v-model="activeName" style="height: calc(100% - 30px);margin: 0 10px;" type="border-card">
<template> <el-tab-pane label="功能" name="first" style="height: 100%;">
<el-card v-for="system in systemList" :key="system.id" class="box-card"> <div style="display: flex;flex-wrap:wrap; justify-content:center;height: 100%;overflow-y: auto;padding-bottom:30px">
<div style="text-align: center;font-size: 26px;font-weight: bolder;color: #0C161A;">{{ system.name }}</div> <template>
<div style="font-size: 14px;color: #0C161A;text-indent: 28px;margin-top: 20px;">{{ system.desc }}</div> <el-card v-for="system in systemList" :key="system.id" class="box-card">
<el-button style="position: absolute;bottom: 15px;left: 0;right: 0;margin: 0 auto;width: 60px;" size="small" type="primary" @click="enterSimulation(system)">进入</el-button> <div style="text-align: center;font-size: 26px;font-weight: bolder;color: #0C161A;">{{ system.name }}</div>
</el-card> <div style="font-size: 14px;color: #0C161A;text-indent: 28px;margin-top: 20px;">{{ system.desc }}</div>
</template> <el-button style="position: absolute;bottom: 15px;left: 0;right: 0;margin: 0 auto;width: 60px;" size="small" type="primary" @click="enterSimulation(system)">进入</el-button>
</div> </el-card>
</el-tab-pane> </template>
<el-tab-pane label="联机" name="second"> </div>
<el-form ref="ruleForm" v-loading="loading" :model="ruleForm" :rules="rules" label-width="100px"> </el-tab-pane>
<el-form-item label="仿真号" prop="inputGroup"> <el-tab-pane label="联机" name="second">
<el-input v-model="ruleForm.inputGroup" placeholder="请输入仿真号" style="width: 200px;" /> <el-form ref="ruleForm" v-loading="loading" :model="ruleForm" :rules="rules" label-width="100px">
</el-form-item> <el-form-item label="仿真号" prop="inputGroup">
<el-form-item> <el-input v-model="ruleForm.inputGroup" placeholder="请输入仿真号" style="width: 200px;" />
<el-button type="primary" @click="joinSimulation">立即加入</el-button> </el-form-item>
<el-button @click="resetGroup">重置</el-button> <el-form-item>
</el-form-item> <el-button type="primary" @click="joinSimulation">立即加入</el-button>
</el-form> <el-button @click="resetGroup">重置</el-button>
</el-tab-pane> </el-form-item>
<el-tab-pane label="权限" name="third"> </el-form>
<div style="height: 100%; overflow: auto;"> </el-tab-pane>
<QueryListPage ref="queryListPage" :pager-config="pagerConfig" :query-form="queryForm" :query-list="queryList" /> <el-tab-pane label="权限" name="third">
<select-role ref="selectRole" @reloadTable="reloadTable" /> <div style="height: 100%; overflow: auto;">
</div> <QueryListPage ref="queryListPage" :pager-config="pagerConfig" :query-form="queryForm" :query-list="queryList" />
</el-tab-pane> <select-role ref="selectRole" @reloadTable="reloadTable" />
</el-tabs> </div>
</el-tab-pane>
</el-tabs>
</div>
</template> </template>
<script> <script>
@ -39,6 +42,7 @@ import { launchFullscreen } from '@/utils/screen';
import { createSimulation } from '@/api/simulation'; import { createSimulation } from '@/api/simulation';
import { getSessionStorage } from '@/utils/auth'; import { getSessionStorage } from '@/utils/auth';
import { jointSimulationByPermission } from '@/api/jointSimulation'; import { jointSimulationByPermission } from '@/api/jointSimulation';
import { EventBus } from '@/scripts/event-bus';
export default { export default {
name: 'Simulation', name: 'Simulation',
components: { components: {
@ -48,11 +52,13 @@ export default {
return { return {
loading: false, loading: false,
param: '', param: '',
mapName: '',
loadingProjectList: ['login', 'design', 'xty', 'designxty', 'gzb', 'designxty', 'xadt', 'designxadt', 'drts', 'designdrts', 'hlsdrts', 'designhlsdrts', 'teaching', 'designteaching'], loadingProjectList: ['login', 'design', 'xty', 'designxty', 'gzb', 'designxty', 'xadt', 'designxadt', 'drts', 'designdrts', 'hlsdrts', 'designhlsdrts', 'teaching', 'designteaching'],
activeName: 'first', activeName: 'first',
WhetherTypeList: [], WhetherTypeList: [],
activeNames: ['1', '2'], activeNames: ['1', '2'],
systemList: [], systemList: [],
mapList: [],
pagerConfig: { pagerConfig: {
pageSize: 'pageSize', pageSize: 'pageSize',
pageIndex: 'pageNum' pageIndex: 'pageNum'
@ -195,6 +201,13 @@ export default {
} }
}, },
mounted() { mounted() {
EventBus.$on('setMapList', (mapList) => {
this.mapList = mapList;
const map = this.mapList.find(map => map.id === this.$route.params.mapId);
if (map) {
this.mapName = map.name;
}
});
this.loadInitData(); this.loadInitData();
this.initMapSystem(); this.initMapSystem();
}, },
@ -210,6 +223,10 @@ export default {
this.$refs.selectRole.doShow(row.id); this.$refs.selectRole.doShow(row.id);
}, },
initMapSystem() { initMapSystem() {
const map = this.mapList.find(map => map.id === this.$route.params.mapId);
if (map) {
this.mapName = map.name;
}
queryMapFunctionList({mapId: this.$route.params.mapId}).then(resp => { queryMapFunctionList({mapId: this.$route.params.mapId}).then(resp => {
this.systemList = resp.data; this.systemList = resp.data;
console.log(resp); console.log(resp);
@ -224,9 +241,6 @@ export default {
return row[porpInfo.property] ? row[porpInfo.property] : this.$t('global.perpetual'); return row[porpInfo.property] ? row[porpInfo.property] : this.$t('global.perpetual');
}, },
queryFunction(params) { queryFunction(params) {
// if (this.$route.params.mapId) {
// params.mapId = this.$route.params.mapId;
// }
return getMapIdPermisson(this.$route.params.mapId); return getMapIdPermisson(this.$route.params.mapId);
}, },
reloadTable() { reloadTable() {