Merge branch 'test' of https://git.code.tencent.com/lian-cbtc/jl-client into test
This commit is contained in:
commit
22d2dd16f8
@ -158,3 +158,27 @@ export function getTrainingTypeAndNumByMapIdAndPrdType(params) {
|
||||
params
|
||||
});
|
||||
}
|
||||
/** 已发布实训分页列表 */
|
||||
export function getPublishTrainingListPaged(params) {
|
||||
return request({
|
||||
url: `/api/v2/training/published/page`,
|
||||
method: 'get',
|
||||
params
|
||||
});
|
||||
}
|
||||
/** 已发布实训上架 */
|
||||
export function publishTrainingPutOn(data) {
|
||||
return request({
|
||||
url: `/api/v2/training/published/put/on`,
|
||||
method: 'post',
|
||||
data
|
||||
});
|
||||
}
|
||||
/** 已发布实训下架 */
|
||||
export function publishTrainingPutOff(data) {
|
||||
return request({
|
||||
url: `/api/v2/training/published/pull/off`,
|
||||
method: 'post',
|
||||
data
|
||||
});
|
||||
}
|
||||
|
@ -97,6 +97,7 @@ export default {
|
||||
boardManage: 'Message Board Manage',
|
||||
publishIBPManage:'publish IBP Manage',
|
||||
publishISCSManage:'publish ISCS Manage',
|
||||
publishTrainingManage: 'publish Training Manage',
|
||||
voiceTraining: 'Voice Training',
|
||||
mapGroup: 'Map Group',
|
||||
drawingMange:'Drawing Mange',
|
||||
|
@ -101,6 +101,7 @@ export default {
|
||||
boardManage: '留言板管理',
|
||||
publishIBPManage:'发布IBP盘管理',
|
||||
publishISCSManage:'发布ISCS管理',
|
||||
publishTrainingManage: '发布实训管理',
|
||||
voiceTraining: '语音训练',
|
||||
mapGroup: '地图分组',
|
||||
drawingMange:'图纸管理',
|
||||
|
@ -92,13 +92,6 @@ export default class Station extends Group {
|
||||
this.add(this.mileageText);
|
||||
|
||||
}
|
||||
|
||||
// if (!model.visible) { // 隐藏车站
|
||||
// // this.subheadText && this.subheadText.setStyle('textFill', 'rgba(0,0,0,0)');
|
||||
// // this.mileageText && this.mileageText.setStyle('textFill', 'rgba(0,0,0,0)');
|
||||
// // this.stationText && this.stationText.setStyle('textFill', 'rgba(0,0,0,0)');
|
||||
// this.eachChild(elem => { elem.hide(); });
|
||||
// }
|
||||
}
|
||||
createTurnBack() { // 创建按图折返
|
||||
const model = this.model;
|
||||
@ -357,7 +350,7 @@ export default class Station extends Group {
|
||||
zlevel: this.zlevel,
|
||||
z: this.z,
|
||||
style: {
|
||||
x: computedControlModePoint.x + this.style.Station.StationControl.text.offsetX * 0,
|
||||
x: computedControlModePoint.x + this.style.Station.StationControl.text.offsetX,
|
||||
y: computedControlModePoint.y + this.style.Station.StationControl.text.offsetY,
|
||||
fontWeight: this.style.Station.StationControl.text.fontWeight,
|
||||
fontSize: this.style.Station.StationControl.text.fontSize,
|
||||
@ -452,7 +445,6 @@ export default class Station extends Group {
|
||||
}
|
||||
}
|
||||
createSelfDiscipline() {
|
||||
// const model = this.model;
|
||||
const computedControlModePoint = this.computedControlModePoint;
|
||||
if (this.style.Station.StationControl.selfDiscipline) {
|
||||
this.selfDiscipline = new ESingleControl({
|
||||
@ -564,7 +556,7 @@ export default class Station extends Group {
|
||||
});
|
||||
}
|
||||
this.add(this.veryControlButton);
|
||||
if (this.style.Station.StationControl.veryControlButton.border) {
|
||||
if (this.style.Station.StationControl.veryControlButton && this.style.Station.StationControl.veryControlButton.border) {
|
||||
const borderLine = this.style.Station.StationControl.veryControlButton.borderLine || 1;
|
||||
const width = this.style.Station.StationControl.lamp.radiusR * 2;
|
||||
const leftUpX = computedControlModePoint.x + this.style.Station.StationControl.lamp.distance * 3 / 2 + this.style.Station.StationControl.veryControlButton.offset.x - this.style.Station.StationControl.lamp.radiusR;
|
||||
@ -905,7 +897,7 @@ export default class Station extends Group {
|
||||
this.interconnectedControl && this.interconnectedControl.setTextColor(this.style.Station.StationControl.lamp.purpleColor);
|
||||
this.veryControl && this.veryControl.setColor(this.style.Station.StationControl.veryControl.lightColor);
|
||||
this.veryControlButton && this.veryControlButton.setStyle({ fill: this.style.Station.StationControl.veryControlButton.lightColor });
|
||||
if (this.style.Station.StationControl.veryControlButton.border) {
|
||||
if (this.style.Station.StationControl.veryControlButton && this.style.Station.StationControl.veryControlButton.border) {
|
||||
this.leftBoard && this.leftBoard.setStyle('stroke', '#A0A0A0');
|
||||
this.topBoard && this.topBoard.setStyle('stroke', '#A0A0A0');
|
||||
this.rightBoard && this.rightBoard.setStyle('stroke', '#FFFFFF');
|
||||
@ -951,7 +943,7 @@ export default class Station extends Group {
|
||||
} else {
|
||||
this.stationText && this.stationText.stopAnimate();
|
||||
}
|
||||
if (this.style.Station.StationControl.veryControlButton.border) {
|
||||
if (this.style.Station.StationControl.veryControlButton && this.style.Station.StationControl.veryControlButton.border) {
|
||||
this.leftBoard && this.leftBoard.setStyle('stroke', '#FFFFFF');
|
||||
this.topBoard && this.topBoard.setStyle('stroke', '#FFFFFF');
|
||||
this.rightBoard && this.rightBoard.setStyle('stroke', '#A0A0A0');
|
||||
@ -1055,9 +1047,7 @@ export default class Station extends Group {
|
||||
}
|
||||
|
||||
handleComplexControl(controller) {
|
||||
// const controller = model.controller;
|
||||
const memberData = store.state.training.memberData;
|
||||
// console.log(controller, memberData[controller], memberData[controller].userId, store.state.user.id, '88888888');
|
||||
if (memberData[controller].userId && memberData[controller].userId == store.state.user.id) {
|
||||
this.stationText.setColor(this.style.Station.stationText.currentModeColor);
|
||||
} else {
|
||||
@ -1065,7 +1055,6 @@ export default class Station extends Group {
|
||||
this.stationText.setColor(this.style.Station.stationText.dispatherColor);
|
||||
} else if (memberData[controller].type == 'STATION_SUPERVISOR') {
|
||||
const deviceCode = memberData[controller].deviceCode;
|
||||
// console.log(deviceCode, '999999999');
|
||||
if (deviceCode) {
|
||||
const device = store.getters['map/getDeviceByCode'](deviceCode);
|
||||
if (device.centralized) {
|
||||
|
77
src/jmapNew/theme/datie_02/menus/components/menu.vue
Normal file
77
src/jmapNew/theme/datie_02/menus/components/menu.vue
Normal file
@ -0,0 +1,77 @@
|
||||
<template>
|
||||
<ul class="settings-menu" :class="{ 'pos-bottom': position === 'bottom', 'pos-right': position === 'right' }">
|
||||
<li
|
||||
class="settings-menu-item"
|
||||
v-for="(item, i) in items"
|
||||
:key="`li-${i}`"
|
||||
@mouseenter="currMenuIndex = i"
|
||||
@mouseleave="currMenuIndex = -1"
|
||||
@click.stop="handleMenuItemClick(item.id)"
|
||||
>
|
||||
<span>{{ item.label }}</span>
|
||||
<span :style="{ float: 'right' }" v-if="item.children">></span>
|
||||
<settings-menu
|
||||
@select="handleMenuItemClick(`${item.id}-${$event}`)"
|
||||
v-if="item.children && currMenuIndex === i"
|
||||
:items="item.children"
|
||||
position="right"
|
||||
/>
|
||||
</li>
|
||||
</ul>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'SettingsMenu',
|
||||
props: {
|
||||
items: Array,
|
||||
position: {
|
||||
validator: val => ['right', 'bottom'].includes(val),
|
||||
},
|
||||
},
|
||||
emits: ['select'],
|
||||
computed: {
|
||||
currentSubMenu() {},
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
currMenuIndex: -1,
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
handleMenuItemClick(id) {
|
||||
if (!id) return
|
||||
this.$emit('select', id)
|
||||
},
|
||||
},
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.settings-menu {
|
||||
background-color: #add8e6;
|
||||
line-height: 2rem;
|
||||
min-width: 160px;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: 1px solid #666;
|
||||
border-top: 0;
|
||||
}
|
||||
.settings-menu-item {
|
||||
list-style: none;
|
||||
padding: 0 0 0 1rem;
|
||||
border-top: 1px solid #666;
|
||||
position: relative;
|
||||
}
|
||||
.settings-menu-item:hover {
|
||||
background-color: #88d8ee;
|
||||
}
|
||||
.settings-menu-item:active {
|
||||
background-color: #97e3f8;
|
||||
}
|
||||
.pos-right {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 100%;
|
||||
}
|
||||
</style>
|
156
src/jmapNew/theme/datie_02/menus/dialog/boardViewSetting.vue
Normal file
156
src/jmapNew/theme/datie_02/menus/dialog/boardViewSetting.vue
Normal file
@ -0,0 +1,156 @@
|
||||
<template>
|
||||
<el-dialog
|
||||
v-dialogDrag
|
||||
class="chengdou-03__systerm train-set-plan"
|
||||
title="占线板显示配置"
|
||||
:visible.sync="show"
|
||||
width="800px"
|
||||
:before-close="doClose"
|
||||
:z-index="3000"
|
||||
:append-to-body="true"
|
||||
:modal="true"
|
||||
>
|
||||
<el-tabs v-model="activeName" type="card">
|
||||
<el-tab-pane label="股道视图" name="railView"></el-tab-pane>
|
||||
<el-tab-pane label="进路序列" name="routeSequence"></el-tab-pane>
|
||||
<el-tab-pane label="股道视图显示参数" name="railViewParam"></el-tab-pane>
|
||||
<el-tab-pane label="预览界面" name="preview"></el-tab-pane>
|
||||
</el-tabs>
|
||||
<div class="railView" v-if="activeName === 'railView'">
|
||||
<div class="left">
|
||||
<div class="list">
|
||||
<div class="item">沈阳&沈阳北</div>
|
||||
<div class="item">沈阳</div>
|
||||
</div>
|
||||
<div class="btn-area">
|
||||
<div class="row">
|
||||
<div>显示名</div>
|
||||
<el-input style="width:40%;" v-model="form.railView.displayName"></el-input>
|
||||
<el-select style="width:30%;" v-model="form.railView.view.value">
|
||||
<el-option
|
||||
v-for="option in form.railView.view.options"
|
||||
:key="option.value"
|
||||
:label="option.label"
|
||||
:value="option.value"
|
||||
></el-option>
|
||||
</el-select>
|
||||
</div>
|
||||
<div class="row">
|
||||
<el-button>增加页面</el-button>
|
||||
<el-button>修改名称</el-button>
|
||||
<el-button>删除页面</el-button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="right">
|
||||
<div class="list">
|
||||
<div class="item">沈阳</div>
|
||||
<div class="item">沈阳北</div>
|
||||
</div>
|
||||
<div class="btn-area">
|
||||
<div class="row">
|
||||
<el-select style="width:100%;" v-model="form.railView.station.value">
|
||||
<el-option
|
||||
v-for="option in form.railView.station.options"
|
||||
:key="option.value"
|
||||
:label="option.label"
|
||||
:value="option.value"
|
||||
></el-option>
|
||||
</el-select>
|
||||
</div>
|
||||
<div class="row">
|
||||
<el-button>增加视图</el-button>
|
||||
<el-button>删除视图</el-button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="routeSequence" v-if="activeName === 'routeSequence'"></div>
|
||||
<div class="railViewParam" v-if="activeName === 'railViewParam'"></div>
|
||||
<div class="preview" v-if="activeName === 'preview'"></div>
|
||||
<div class="optBar">
|
||||
<el-button-group>
|
||||
<el-button width="100px">生成默认股道视图设置</el-button>
|
||||
<el-button>生成默认序列视图设置</el-button>
|
||||
</el-button-group>
|
||||
<el-button-group>
|
||||
<el-button>保存</el-button>
|
||||
<el-button @click="doClose">关闭</el-button>
|
||||
</el-button-group>
|
||||
</div>
|
||||
</el-dialog>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'BoardViewSetting',
|
||||
data() {
|
||||
return {
|
||||
show: false,
|
||||
activeName: 'railView',
|
||||
form: {
|
||||
railView: {
|
||||
diaplayName: '',
|
||||
view: {
|
||||
value: 'rail',
|
||||
options: [
|
||||
{
|
||||
label: '股道视图',
|
||||
value: 'rail',
|
||||
},
|
||||
],
|
||||
},
|
||||
station: {
|
||||
value: 'shenyang',
|
||||
options: [{ label: '沈阳', value: 'shenyang' }],
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
doShow() {
|
||||
this.show = true
|
||||
},
|
||||
doClose() {
|
||||
this.show = false
|
||||
},
|
||||
},
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
// /deep/.el-dialog__body {
|
||||
// background: #8d939d !important;
|
||||
// }
|
||||
.railView {
|
||||
display: flex;
|
||||
margin-bottom: 10px;
|
||||
.left,
|
||||
.right {
|
||||
width: 50%;
|
||||
}
|
||||
.list {
|
||||
margin: 10px;
|
||||
background-color: #fff;
|
||||
height: 10rem;
|
||||
padding: 0 5px;
|
||||
.item {
|
||||
line-height: 1.2rem;
|
||||
}
|
||||
}
|
||||
.row {
|
||||
margin: 8px;
|
||||
display: flex;
|
||||
justify-content: space-around;
|
||||
}
|
||||
}
|
||||
.optBar {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
.el-button {
|
||||
width: auto !important;
|
||||
margin: 0 5px;
|
||||
}
|
||||
}
|
||||
</style>
|
@ -4,299 +4,372 @@
|
||||
<div class="card" style="padding: 5px;">
|
||||
<div style="background: #999EA7;display: flex;align-items: center;">
|
||||
<div class="button-box">
|
||||
<img :src="t3Pic" class="img-button">
|
||||
<img :src="t3Pic" class="img-button" @click.stop="activeMenu = 't3'" />
|
||||
<settings-menu :items="T3MenuItems" v-if="activeMenu === 't3'" @select="handleT3MenuSelect" />
|
||||
</div>
|
||||
<div class="button-box">
|
||||
<img :src="panelPic" class="img-button" @click="showLineBoard">
|
||||
<img :src="panelPic" class="img-button" @click="showLineBoard" />
|
||||
</div>
|
||||
<div class="button-box">
|
||||
<img :src="trainPic" class="img-button">
|
||||
<img :src="trainPic" class="img-button" />
|
||||
</div>
|
||||
<div class="button-box">
|
||||
<img :src="linkPic" class="img-button">
|
||||
<img :src="linkPic" class="img-button" />
|
||||
</div>
|
||||
<div class="button-box">
|
||||
<img :src="cameraPic" class="img-button">
|
||||
<img :src="cameraPic" class="img-button" />
|
||||
</div>
|
||||
<div style="width: 205px;height: 36px; background: #fff;border-radius: 5px;" />
|
||||
<div class="button-box">
|
||||
<img :src="settingPic" class="img-button">
|
||||
<img :src="settingPic" class="img-button" @click.stop="activeMenu = 'setting'" />
|
||||
<settings-menu :items="settingsMenuItems" v-if="activeMenu === 'setting'" @select="handleSettingsMenuSelect" />
|
||||
</div>
|
||||
<div class="button-box">
|
||||
<img :src="shutdownPic" class="img-button">
|
||||
<img :src="shutdownPic" class="img-button" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<notice-info ref="noticeInfo" pop-class="chengdou-03__systerm" />
|
||||
<BoardViewSetting ref="boardViewSetting" />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { mapGetters } from 'vuex';
|
||||
import { MouseEvent } from '@/scripts/ConstDic';
|
||||
import NoticeInfo from '@/jmapNew/theme/components/menus/childDialog/noticeInfo';
|
||||
import T3Pic from '@/assets/ctc_icon/t3.png';
|
||||
import TrainPic from '@/assets/ctc_icon/train.png';
|
||||
import PanelPic from '@/assets/ctc_icon/panel.png';
|
||||
import LinkPic from '@/assets/ctc_icon/link.png';
|
||||
import CameraPic from '@/assets/ctc_icon/camera.png';
|
||||
import SettingPic from '@/assets/ctc_icon/setting.png';
|
||||
import ShutdownPic from '@/assets/ctc_icon/shutdown.png';
|
||||
import { EventBus } from '@/scripts/event-bus';
|
||||
import { mapGetters } from 'vuex'
|
||||
import { MouseEvent } from '@/scripts/ConstDic'
|
||||
import NoticeInfo from '@/jmapNew/theme/components/menus/childDialog/noticeInfo'
|
||||
import T3Pic from '@/assets/ctc_icon/t3.png'
|
||||
import TrainPic from '@/assets/ctc_icon/train.png'
|
||||
import PanelPic from '@/assets/ctc_icon/panel.png'
|
||||
import LinkPic from '@/assets/ctc_icon/link.png'
|
||||
import CameraPic from '@/assets/ctc_icon/camera.png'
|
||||
import SettingPic from '@/assets/ctc_icon/setting.png'
|
||||
import ShutdownPic from '@/assets/ctc_icon/shutdown.png'
|
||||
import { EventBus } from '@/scripts/event-bus'
|
||||
import SettingsMenu from './components/menu.vue'
|
||||
import BoardViewSetting from './dialog/boardViewSetting.vue'
|
||||
|
||||
export default {
|
||||
name: 'RouteCreate',
|
||||
components: {
|
||||
NoticeInfo
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
dialogShow: true,
|
||||
loading: false,
|
||||
selected: null,
|
||||
t3Pic: T3Pic,
|
||||
panelPic: PanelPic,
|
||||
trainPic: TrainPic,
|
||||
linkPic: LinkPic,
|
||||
cameraPic: CameraPic,
|
||||
settingPic: SettingPic,
|
||||
shutdownPic: ShutdownPic
|
||||
};
|
||||
},
|
||||
computed: {
|
||||
...mapGetters('map', [
|
||||
'stationList',
|
||||
'sectionList'
|
||||
]),
|
||||
show() {
|
||||
return this.dialogShow && !this.$store.state.menuOperation.break;
|
||||
name: 'RouteCreate',
|
||||
components: {
|
||||
NoticeInfo,
|
||||
SettingsMenu,
|
||||
BoardViewSetting,
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
dialogShow: true,
|
||||
loading: false,
|
||||
selected: null,
|
||||
t3Pic: T3Pic,
|
||||
panelPic: PanelPic,
|
||||
trainPic: TrainPic,
|
||||
linkPic: LinkPic,
|
||||
cameraPic: CameraPic,
|
||||
settingPic: SettingPic,
|
||||
shutdownPic: ShutdownPic,
|
||||
activeMenu: '',
|
||||
settingsMenuItems: [
|
||||
{ label: '占线板视图设置', id: 'boardView' },
|
||||
{ label: '股道视图显示设置', id: 'trackView' },
|
||||
{
|
||||
label: '方向显示设置',
|
||||
id: 'directionView',
|
||||
children: [{ label: '标准站', id: 'std' }, { label: '标准甲站', id: 'std1' }, { label: '标准乙站', id: 'std2' }],
|
||||
},
|
||||
createDisable() {
|
||||
return !(this.groupNumber1 && this.groupNumber1.length === 4 && this.nowSectionCode && this.newTrainCode && this.newTrainCode.length === 8);
|
||||
{
|
||||
label: '调车参数配置',
|
||||
id: 'shuntingParam',
|
||||
children: [{ label: '标准站', id: 'std' }, { label: '标准甲站', id: 'std1' }, { label: '标准乙站', id: 'std2' }],
|
||||
},
|
||||
updateDisable() {
|
||||
return !(this.newTrainCode && this.newTrainCode.length === 8);
|
||||
{
|
||||
label: '调车优先级配置',
|
||||
id: 'shuntingPriority',
|
||||
children: [{ label: '标准站', id: 'std' }, { label: '标准甲站', id: 'std1' }, { label: '标准乙站', id: 'std2' }],
|
||||
},
|
||||
moveDisable() {
|
||||
return !this.newSectionCode;
|
||||
{
|
||||
label: '调车规则配置',
|
||||
id: 'shuntingRule',
|
||||
children: [{ label: '标准站', id: 'std' }, { label: '标准甲站', id: 'std1' }, { label: '标准乙站', id: 'std2' }],
|
||||
},
|
||||
deleteDisable() {
|
||||
return !this.nowTrainCode;
|
||||
}
|
||||
},
|
||||
watch: {
|
||||
'$store.state.menuOperation.selectedCount':function(em) {
|
||||
const device = this.$store.state.menuOperation.selected;
|
||||
if (device && device.code && device._type === 'Section') {
|
||||
this.nowSectionCode = device.code;
|
||||
} else if (device && device.code && device._type === 'Train' && device._event === MouseEvent.Left) {
|
||||
this.doShow(device);
|
||||
}
|
||||
}
|
||||
},
|
||||
mounted() {
|
||||
this.dragEvent(); // 24
|
||||
},
|
||||
methods: {
|
||||
doShow(selected) {
|
||||
this.dialogShow = true;
|
||||
this.$nextTick(function () {
|
||||
this.dragEvent();
|
||||
});
|
||||
{
|
||||
label: '功能按钮设置',
|
||||
id: 'functionButton',
|
||||
children: [{ label: '标准站', id: 'std' }, { label: '标准甲站', id: 'std1' }, { label: '标准乙站', id: 'std2' }],
|
||||
},
|
||||
doClose() {
|
||||
this.loading = false;
|
||||
this.dialogShow = false;
|
||||
this.$store.dispatch('training/emitTipFresh');
|
||||
},
|
||||
showLineBoard() {
|
||||
EventBus.$emit('showLineBoard');
|
||||
},
|
||||
dragEvent() {
|
||||
const offset = this.offset;
|
||||
const dragDom = document.querySelector('#faultChoose');
|
||||
dragDom.style.cursor = 'move';
|
||||
|
||||
/** 获取原有属性 ie dom元素.currentStyle 火狐谷歌 window.getComputedStyle(dom元素, null);*/
|
||||
const sty = dragDom.currentStyle || window.getComputedStyle(dragDom, null);
|
||||
dragDom.onmousedown = (e) => {
|
||||
/** 鼠标按下,计算当前元素距离可视区的距离*/
|
||||
const disX = e.clientX;
|
||||
const disY = e.clientY;
|
||||
|
||||
/** 获取到的值带px 正则匹配替换*/
|
||||
let styL, styT;
|
||||
|
||||
/** 注意在ie中 第一次获取到的值为组件自带50% 移动之后赋值为px*/
|
||||
if (sty.left.includes('%')) {
|
||||
// eslint-disable-next-line no-useless-escape
|
||||
styL = +document.body.clientWidth * (+sty.left.replace(/\%/g, '') / 100);
|
||||
styT = +document.body.clientHeight * (+sty.top.replace(/\%/g, '') / 100);
|
||||
} else {
|
||||
// eslint-disable-next-line no-useless-escape
|
||||
styL = +sty.left.replace(/\px/g, '');
|
||||
// eslint-disable-next-line no-useless-escape
|
||||
styT = +sty.top.replace(/\px/g, '');
|
||||
}
|
||||
document.onmousemove = function (e) {
|
||||
/** 通过事件委托,计算移动的距离*/
|
||||
const l = e.clientX - disX;
|
||||
const t = e.clientY - disY;
|
||||
|
||||
/** 移动当前元素*/
|
||||
// dragDom.style.left = `${l + styL}px`;
|
||||
// dragDom.style.top = `${t + styT}px`;
|
||||
|
||||
/** 移动当前元素*/
|
||||
if (l + styL < 0) {
|
||||
dragDom.style.left = `0px`;
|
||||
} else if (l + styL > document.body.clientWidth - dragDom.clientWidth - 10) {
|
||||
dragDom.style.left = `${document.body.clientWidth - dragDom.clientWidth - 10}px`;
|
||||
} else {
|
||||
dragDom.style.left = `${l + styL}px`;
|
||||
}
|
||||
if (t + styT <= offset) {
|
||||
dragDom.style.top = offset + `px`;
|
||||
} else if (t + styT > document.body.clientHeight - dragDom.clientHeight - 10) {
|
||||
dragDom.style.top = `${document.body.clientHeight - dragDom.clientHeight - 10}px`;
|
||||
} else {
|
||||
dragDom.style.top = `${t + styT}px`;
|
||||
}
|
||||
/** 将此时的位置传出去*/
|
||||
// binding.value({ x: e.pageX, y: e.pageY });
|
||||
};
|
||||
|
||||
document.onmouseup = function () {
|
||||
document.onmousemove = null;
|
||||
document.onmouseup = null;
|
||||
};
|
||||
};
|
||||
}
|
||||
{ label: '站场界面显示设置', id: 'UIDisplay' },
|
||||
{ label: '报警提示设置', id: 'alarm' },
|
||||
{ label: '版本信息', id: 'version' },
|
||||
],
|
||||
T3MenuItems: [
|
||||
{ label: '设置供电臂状态', id: 'powerSupplyArm' },
|
||||
{ label: '封锁设备操作', id: 'blockedDeviceOperation' },
|
||||
{ label: '区域批量设备操作', id: 'regionBatchOperation', children: [{}] },
|
||||
{ label: '站存车管理', id: 'stationTrainManage', children: [{}] },
|
||||
{ label: '设备影响分析', id: 'deviceAffectAnalyze', children: [{}] },
|
||||
{ label: '操作日志查询', id: 'operationLog' },
|
||||
{ label: '防溜设置查询', id: 'deviceAffectAnalyze' },
|
||||
{ label: '设备影响分析', id: 'deviceAffectAnalyze' },
|
||||
],
|
||||
}
|
||||
};
|
||||
},
|
||||
computed: {
|
||||
...mapGetters('map', ['stationList', 'sectionList']),
|
||||
show() {
|
||||
return this.dialogShow && !this.$store.state.menuOperation.break
|
||||
},
|
||||
createDisable() {
|
||||
return !(
|
||||
this.groupNumber1 &&
|
||||
this.groupNumber1.length === 4 &&
|
||||
this.nowSectionCode &&
|
||||
this.newTrainCode &&
|
||||
this.newTrainCode.length === 8
|
||||
)
|
||||
},
|
||||
updateDisable() {
|
||||
return !(this.newTrainCode && this.newTrainCode.length === 8)
|
||||
},
|
||||
moveDisable() {
|
||||
return !this.newSectionCode
|
||||
},
|
||||
deleteDisable() {
|
||||
return !this.nowTrainCode
|
||||
},
|
||||
},
|
||||
watch: {
|
||||
'$store.state.menuOperation.selectedCount': function(em) {
|
||||
const device = this.$store.state.menuOperation.selected
|
||||
if (device && device.code && device._type === 'Section') {
|
||||
this.nowSectionCode = device.code
|
||||
} else if (device && device.code && device._type === 'Train' && device._event === MouseEvent.Left) {
|
||||
this.doShow(device)
|
||||
}
|
||||
},
|
||||
},
|
||||
mounted() {
|
||||
this.dragEvent() // 24
|
||||
window.addEventListener('click', this.closeMenus)
|
||||
window.addEventListener('click', this.closeMenus)
|
||||
},
|
||||
unmounted() {
|
||||
window.removeEventListener('click', this.closeMenus)
|
||||
},
|
||||
methods: {
|
||||
doShow(selected) {
|
||||
this.dialogShow = true
|
||||
this.$nextTick(function() {
|
||||
this.dragEvent()
|
||||
})
|
||||
},
|
||||
doClose() {
|
||||
this.loading = false
|
||||
this.dialogShow = false
|
||||
this.$store.dispatch('training/emitTipFresh')
|
||||
},
|
||||
showLineBoard() {
|
||||
EventBus.$emit('showLineBoard')
|
||||
},
|
||||
closeMenus() {
|
||||
this.activeMenu = ''
|
||||
},
|
||||
handleSettingsMenuSelect(id) {
|
||||
this.closeMenus()
|
||||
const params = id.split('-')
|
||||
switch (params[0]) {
|
||||
case 'boardView':
|
||||
this.$refs.boardViewSetting.doShow()
|
||||
break
|
||||
}
|
||||
},
|
||||
handleT3MenuSelect(id) {
|
||||
console.log(id)
|
||||
},
|
||||
dragEvent() {
|
||||
const offset = this.offset
|
||||
const dragDom = document.querySelector('#faultChoose')
|
||||
dragDom.style.cursor = 'move'
|
||||
|
||||
/** 获取原有属性 ie dom元素.currentStyle 火狐谷歌 window.getComputedStyle(dom元素, null);*/
|
||||
const sty = dragDom.currentStyle || window.getComputedStyle(dragDom, null)
|
||||
dragDom.onmousedown = e => {
|
||||
/** 鼠标按下,计算当前元素距离可视区的距离*/
|
||||
const disX = e.clientX
|
||||
const disY = e.clientY
|
||||
|
||||
/** 获取到的值带px 正则匹配替换*/
|
||||
let styL, styT
|
||||
|
||||
/** 注意在ie中 第一次获取到的值为组件自带50% 移动之后赋值为px*/
|
||||
if (sty.left.includes('%')) {
|
||||
// eslint-disable-next-line no-useless-escape
|
||||
styL = +document.body.clientWidth * (+sty.left.replace(/\%/g, '') / 100)
|
||||
styT = +document.body.clientHeight * (+sty.top.replace(/\%/g, '') / 100)
|
||||
} else {
|
||||
// eslint-disable-next-line no-useless-escape
|
||||
styL = +sty.left.replace(/\px/g, '')
|
||||
// eslint-disable-next-line no-useless-escape
|
||||
styT = +sty.top.replace(/\px/g, '')
|
||||
}
|
||||
document.onmousemove = function(e) {
|
||||
/** 通过事件委托,计算移动的距离*/
|
||||
const l = e.clientX - disX
|
||||
const t = e.clientY - disY
|
||||
|
||||
/** 移动当前元素*/
|
||||
// dragDom.style.left = `${l + styL}px`;
|
||||
// dragDom.style.top = `${t + styT}px`;
|
||||
|
||||
/** 移动当前元素*/
|
||||
if (l + styL < 0) {
|
||||
dragDom.style.left = `0px`
|
||||
} else if (l + styL > document.body.clientWidth - dragDom.clientWidth - 10) {
|
||||
dragDom.style.left = `${document.body.clientWidth - dragDom.clientWidth - 10}px`
|
||||
} else {
|
||||
dragDom.style.left = `${l + styL}px`
|
||||
}
|
||||
if (t + styT <= offset) {
|
||||
dragDom.style.top = offset + `px`
|
||||
} else if (t + styT > document.body.clientHeight - dragDom.clientHeight - 10) {
|
||||
dragDom.style.top = `${document.body.clientHeight - dragDom.clientHeight - 10}px`
|
||||
} else {
|
||||
dragDom.style.top = `${t + styT}px`
|
||||
}
|
||||
/** 将此时的位置传出去*/
|
||||
// binding.value({ x: e.pageX, y: e.pageY });
|
||||
}
|
||||
|
||||
document.onmouseup = function() {
|
||||
document.onmousemove = null
|
||||
document.onmouseup = null
|
||||
}
|
||||
}
|
||||
},
|
||||
},
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
#faultChoose .el-button--mini {
|
||||
margin-left: 5px;
|
||||
margin-left: 5px;
|
||||
}
|
||||
.triggerFaultListLeft{
|
||||
display: inline-block;
|
||||
float: left;
|
||||
width: 730px;
|
||||
.triggerFaultListLeft {
|
||||
display: inline-block;
|
||||
float: left;
|
||||
width: 730px;
|
||||
}
|
||||
// 谷歌、safari、qq浏览器、360浏览器滚动条样式
|
||||
// 定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸
|
||||
#faultChoose .el-table__body-wrapper::-webkit-scrollbar {
|
||||
width: 6px;
|
||||
height: 6px;
|
||||
// height: 110px;
|
||||
background-color: #FFFFFF;
|
||||
width: 6px;
|
||||
height: 6px;
|
||||
// height: 110px;
|
||||
background-color: #ffffff;
|
||||
}
|
||||
/*定义滚动条轨道 内阴影+圆角*/
|
||||
#faultChoose .el-table__body-wrapper::-webkit-scrollbar-track {
|
||||
// box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
|
||||
border-radius: 10px;
|
||||
background-color: #FFFFFF;;
|
||||
// box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
|
||||
border-radius: 10px;
|
||||
background-color: #ffffff;
|
||||
}
|
||||
/*定义滑块 内阴影+圆角*/
|
||||
#faultChoose .el-table__body-wrapper::-webkit-scrollbar-thumb {
|
||||
border-radius: 10px;
|
||||
// box-shadow: inset 0 0 6px rgba(0,0,0,.3);
|
||||
background-color: #eaeaea;
|
||||
border-radius: 10px;
|
||||
// box-shadow: inset 0 0 6px rgba(0,0,0,.3);
|
||||
background-color: #eaeaea;
|
||||
}
|
||||
/*滑块效果*/
|
||||
#faultChoose .el-table__body-wrapper::-webkit-scrollbar-thumb:hover {
|
||||
border-radius: 5px;
|
||||
// box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
|
||||
background: rgba(0,0,0,0.4);
|
||||
border-radius: 5px;
|
||||
// box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
|
||||
background: rgba(0, 0, 0, 0.4);
|
||||
}
|
||||
/*IE滚动条颜色*/
|
||||
html {
|
||||
scrollbar-face-color:#bfbfbf;/*滚动条颜色*/
|
||||
scrollbar-highlight-color:#000;
|
||||
scrollbar-3dlight-color:#000;
|
||||
scrollbar-darkshadow-color:#000;
|
||||
scrollbar-Shadow-color:#adadad;/*滑块边色*/
|
||||
scrollbar-arrow-color:rgba(0,0,0,0.4);/*箭头颜色*/
|
||||
scrollbar-track-color:#eeeeee;/*背景颜色*/
|
||||
scrollbar-face-color: #bfbfbf; /*滚动条颜色*/
|
||||
scrollbar-highlight-color: #000;
|
||||
scrollbar-3dlight-color: #000;
|
||||
scrollbar-darkshadow-color: #000;
|
||||
scrollbar-shadow-color: #adadad; /*滑块边色*/
|
||||
scrollbar-arrow-color: rgba(0, 0, 0, 0.4); /*箭头颜色*/
|
||||
scrollbar-track-color: #eeeeee; /*背景颜色*/
|
||||
}
|
||||
</style>
|
||||
<style rel="stylesheet/scss" lang="scss" scoped>
|
||||
.triggerFaultInfo{
|
||||
margin-bottom:10px;
|
||||
padding: 10px 0px 10px 15px;
|
||||
.triggerFaultInfo {
|
||||
margin-bottom: 10px;
|
||||
padding: 10px 0px 10px 15px;
|
||||
}
|
||||
.triggerFaultList{
|
||||
font-size: 14px;
|
||||
margin-top: 10px;
|
||||
line-height: 20px;
|
||||
.triggerFaultList {
|
||||
font-size: 14px;
|
||||
margin-top: 10px;
|
||||
line-height: 20px;
|
||||
}
|
||||
.triggerFaultTitle{
|
||||
font-size: 15px;
|
||||
font-weight: bold;
|
||||
.triggerFaultTitle {
|
||||
font-size: 15px;
|
||||
font-weight: bold;
|
||||
}
|
||||
.falutChooseTitle{
|
||||
cursor: all-scroll;
|
||||
background-color: #c0c0c0;
|
||||
height: 30px;
|
||||
line-height: 30px;
|
||||
color: #000;
|
||||
padding-left: 10px;
|
||||
border-radius: 6px 6px 0 0;
|
||||
.falutChooseTitle {
|
||||
cursor: all-scroll;
|
||||
background-color: #c0c0c0;
|
||||
height: 30px;
|
||||
line-height: 30px;
|
||||
color: #000;
|
||||
padding-left: 10px;
|
||||
border-radius: 6px 6px 0 0;
|
||||
}
|
||||
#faultChoose{
|
||||
width: 510px;
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 0;
|
||||
border-radius: 6px;
|
||||
z-index:2009;
|
||||
background-color: #E2E2E2;
|
||||
#faultChoose {
|
||||
width: 510px;
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 0;
|
||||
border-radius: 6px;
|
||||
z-index: 2009;
|
||||
background-color: #e2e2e2;
|
||||
}
|
||||
.faultChooseFoot{
|
||||
display: inline-block;
|
||||
float: right;
|
||||
margin-right: 20px;
|
||||
margin-top: 20px;
|
||||
.faultChooseFoot {
|
||||
display: inline-block;
|
||||
float: right;
|
||||
margin-right: 20px;
|
||||
margin-top: 20px;
|
||||
}
|
||||
.closeFalutChoose{
|
||||
position: absolute;
|
||||
right: 0px;
|
||||
top: 0px;
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
cursor: pointer;
|
||||
line-height: 30px;
|
||||
.closeFalutChoose {
|
||||
position: absolute;
|
||||
right: 0px;
|
||||
top: 0px;
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
cursor: pointer;
|
||||
line-height: 30px;
|
||||
}
|
||||
.closeFalutChooseIn{
|
||||
font-size: 20px;
|
||||
margin-left: 5px;
|
||||
background-color: #f00;
|
||||
color: #FFF;
|
||||
border: 1px solid #fff;
|
||||
border-radius: 5px;
|
||||
.closeFalutChooseIn {
|
||||
font-size: 20px;
|
||||
margin-left: 5px;
|
||||
background-color: #f00;
|
||||
color: #fff;
|
||||
border: 1px solid #fff;
|
||||
border-radius: 5px;
|
||||
}
|
||||
.img-button{
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
background: #EBEBEB;
|
||||
border: 2px inset #fff;
|
||||
border-radius: 5px;
|
||||
.img-button {
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
background: #ebebeb;
|
||||
border: 2px outset #fff;
|
||||
border-radius: 5px;
|
||||
}
|
||||
.img-button:hover{
|
||||
border: 2px outset #fff;
|
||||
.img-button:hover {
|
||||
border: 2px outset #fff;
|
||||
}
|
||||
.img-button:active{
|
||||
border: 2px outset #fff;
|
||||
.img-button:active {
|
||||
border: 2px inset #fff;
|
||||
}
|
||||
.button-box{
|
||||
padding: 3px;
|
||||
background: #EBEBEB;
|
||||
width: 36px;
|
||||
height: 36px;
|
||||
border-radius: 5px;
|
||||
margin: 3px;
|
||||
cursor: pointer;
|
||||
.button-box {
|
||||
padding: 3px;
|
||||
background: #ebebeb;
|
||||
width: 36px;
|
||||
height: 36px;
|
||||
border-radius: 5px;
|
||||
margin: 3px;
|
||||
cursor: pointer;
|
||||
}
|
||||
</style>
|
||||
|
@ -134,6 +134,7 @@ const PublishExamRule = () => import('@/views/publish/examRule/index');
|
||||
const PublishExamRuleDraft = () => import('@/views/publish/examRule/draft/index');
|
||||
const PublishIBP = () => import('@/views/publish/publishIBP/index');
|
||||
const PublishISCS = () => import('@/views/publish/publishISCS/index');
|
||||
const PublishTraining = () => import('@/views/publish/publishTraining/index');
|
||||
|
||||
const TrainingPlatform = () => import('@/views/trainingPlatform/index');
|
||||
|
||||
@ -981,6 +982,13 @@ export const asyncRouter = [
|
||||
meta: {
|
||||
i18n: 'router.mapGroup'
|
||||
}
|
||||
},
|
||||
{
|
||||
path: 'training',
|
||||
component: PublishTraining,
|
||||
meta: {
|
||||
i18n: 'router.publishTrainingManage'
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -32,7 +32,6 @@ class ValidateHandler {
|
||||
const order = Handler.getOrder();
|
||||
let valid = false;
|
||||
|
||||
console.log(operate, steps[order]);
|
||||
if (operate.over && steps.length == 1) { // 右键菜单直接发送校验
|
||||
if (operate && steps[0] &&
|
||||
operate.code == steps[0].code &&
|
||||
|
168
src/views/publish/publishTraining/index.vue
Normal file
168
src/views/publish/publishTraining/index.vue
Normal file
@ -0,0 +1,168 @@
|
||||
<template>
|
||||
<div>
|
||||
<QueryListPage ref="queryListPage" :pager-config="pagerConfig" :query-form="queryForm" :query-list="queryList" />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { getPublishTrainingListPaged, publishTrainingPutOn, publishTrainingPutOff} from '@/api/jmap/training';
|
||||
import { getPublishMapListOnline } from '@/api/jmap/map';
|
||||
|
||||
export default {
|
||||
name: 'PublishMap',
|
||||
components:{},
|
||||
data() {
|
||||
return {
|
||||
pagerConfig: {
|
||||
pageSize: 'pageSize',
|
||||
pageIndex: 'pageNum'
|
||||
},
|
||||
mapList:[],
|
||||
queryForm: {
|
||||
labelWidth: '80px',
|
||||
reset: true,
|
||||
queryObject: {
|
||||
// name: {
|
||||
// type: 'text',
|
||||
// label: this.$t('global.name')
|
||||
// },
|
||||
// mapId: {
|
||||
// type: 'select',
|
||||
// label: this.$t('publish.belongsToMap'),
|
||||
// config: {
|
||||
// data: []
|
||||
// }
|
||||
// },
|
||||
state: {
|
||||
type: 'select',
|
||||
label: '状态',
|
||||
config: {
|
||||
data: [{label: '上架', value: 1}, {label: '下架', value:2}]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
},
|
||||
queryList: {
|
||||
query: getPublishTrainingListPaged,
|
||||
selectCheckShow: false,
|
||||
indexShow: true,
|
||||
columns: [
|
||||
{
|
||||
title: '实训名称',
|
||||
prop: 'name'
|
||||
},
|
||||
{
|
||||
title: '实训地图',
|
||||
prop: 'mapId',
|
||||
type: 'tag',
|
||||
columnValue: (row) => { return this.$convertField(row.mapId, this.mapList, ['id', 'name']); },
|
||||
tagType: (row) => { return 'success'; }
|
||||
},
|
||||
{
|
||||
title: '实训类型',
|
||||
prop: 'type',
|
||||
type: 'tag',
|
||||
width: '120',
|
||||
columnValue: (row) => {
|
||||
if (row.type === 'single') {
|
||||
return '单操';
|
||||
} else if (row.type === 'scene') {
|
||||
return '场景';
|
||||
} else {
|
||||
return '';
|
||||
}
|
||||
},
|
||||
tagType: (row) => { return ''; }
|
||||
},
|
||||
{
|
||||
title: '实训描述',
|
||||
prop: 'description'
|
||||
},
|
||||
{
|
||||
title: '创建时间',
|
||||
prop: 'createTime'
|
||||
},
|
||||
{
|
||||
title: '更新时间',
|
||||
prop: 'updateTime'
|
||||
},
|
||||
{
|
||||
type: 'button',
|
||||
title: this.$t('global.operate'),
|
||||
width: '250',
|
||||
buttons: [
|
||||
{
|
||||
name: this.$t('global.putaway'),
|
||||
handleClick: this.handlePutaway,
|
||||
type: '',
|
||||
showControl: (row) => { return row.status != 1; }
|
||||
},
|
||||
{
|
||||
name: this.$t('global.soldOut'),
|
||||
handleClick: this.handleSoldOut,
|
||||
type: 'warning',
|
||||
showControl: (row) => { return row.status != 2; }
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
currentModel: {}
|
||||
};
|
||||
},
|
||||
computed: {
|
||||
isShow() {
|
||||
return this.$store.getters['roles'].indexOf('05');
|
||||
}
|
||||
},
|
||||
created() {
|
||||
this.loadInitData();
|
||||
},
|
||||
methods: {
|
||||
loadInitData() {
|
||||
this.mapList = [];
|
||||
getPublishMapListOnline().then(resp => {
|
||||
this.mapList = resp.data;
|
||||
this.mapList.forEach(elem => {
|
||||
this.queryForm.queryObject.mapId.config.data.push({value: elem.id, label: elem.name});
|
||||
});
|
||||
});
|
||||
},
|
||||
handlePutaway(index, row) {
|
||||
this.$confirm(this.$t('publish.wellPutawayTraining'), this.$t('global.tips'), {
|
||||
confirmButtonText: this.$t('global.confirm'),
|
||||
cancelButtonText: this.$t('global.cancel'),
|
||||
type: 'warning'
|
||||
}).then(() => {
|
||||
publishTrainingPutOn(row.id).then(response => {
|
||||
this.$message.success(this.$t('publish.operationSuccess'));
|
||||
this.reloadTable();
|
||||
}).catch(() => {
|
||||
this.reloadTable();
|
||||
this.$messageBox(this.$t('error.operationFailure'));
|
||||
});
|
||||
}).catch(() => { });
|
||||
},
|
||||
handleSoldOut(index, row) {
|
||||
this.$confirm(this.$t('publish.wellSoldOutTraining'), this.$t('global.tips'), {
|
||||
confirmButtonText: this.$t('global.confirm'),
|
||||
cancelButtonText: this.$t('global.cancel'),
|
||||
type: 'warning'
|
||||
}).then(() => {
|
||||
publishTrainingPutOff(row.id).then(response => {
|
||||
this.$message.success(this.$t('publish.operationSuccess'));
|
||||
this.reloadTable();
|
||||
}).catch(() => {
|
||||
this.reloadTable();
|
||||
this.$messageBox(this.$t('error.operationFailure'));
|
||||
});
|
||||
}).catch(() => { });
|
||||
},
|
||||
reloadTable() {
|
||||
this.queryList.reload();
|
||||
}
|
||||
}
|
||||
};
|
||||
</script>
|
Loading…
Reference in New Issue
Block a user