455 lines
21 KiB
Vue
455 lines
21 KiB
Vue
<template>
|
|
<el-tabs v-model="activeName" class="card">
|
|
<el-tab-pane class="view-control" :label="$t('map.property')" name="first" :lazy="lazy">
|
|
<operate-property
|
|
ref="dataform"
|
|
:form="form"
|
|
:edit-model="editModel"
|
|
:rules="rules"
|
|
type="StationStand"
|
|
@updateMapModel="updateMapModel"
|
|
/>
|
|
</el-tab-pane>
|
|
<el-tab-pane class="view-control" :label="$t('map.newConstruction')" name="second" :lazy="lazy">
|
|
<create-operate
|
|
ref="createForm"
|
|
:create-form="addForm"
|
|
:add-model="addModel"
|
|
:create-rules="createRules"
|
|
@create="create"
|
|
/>
|
|
</el-tab-pane>
|
|
<el-tab-pane class="view-control" :label="$t('map.batchSettings')" name="three" :lazy="lazy">
|
|
<el-form ref="oprt" :model="allModel" label-width="130px" size="mini">
|
|
<el-form-item label="站台宽度:" prop="width">
|
|
<el-input-number v-model="allModel.width" style="width: 140px" />
|
|
</el-form-item>
|
|
<el-form-item label="站台高度:" prop="height">
|
|
<el-input-number v-model="allModel.height" style="width: 140px" />
|
|
</el-form-item>
|
|
<el-form-item>
|
|
<el-button-group>
|
|
<el-button type="primary" @click="batchSettings">{{ $t('global.set') }}</el-button>
|
|
</el-button-group>
|
|
</el-form-item>
|
|
</el-form>
|
|
</el-tab-pane>
|
|
</el-tabs>
|
|
</template>
|
|
|
|
<script>
|
|
import { mapGetters } from 'vuex';
|
|
import { getUID } from '@/jmapNew/utils/Uid';
|
|
import CreateOperate from './components/createOperate';
|
|
import OperateProperty from './components/operateProperty';
|
|
import { deepAssign } from '@/utils/index';
|
|
import getModel from './models.js';
|
|
|
|
export default {
|
|
name: 'StationStandDraft',
|
|
components: {
|
|
CreateOperate,
|
|
OperateProperty
|
|
},
|
|
props: {
|
|
selected: {
|
|
type: Object,
|
|
default: function () {
|
|
return null;
|
|
}
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
activeName: 'first',
|
|
lazy: true,
|
|
DoorLocationTypeList: [],
|
|
RunDirectionTypeList: [],
|
|
/*
|
|
{ code: '01', name: '朝下' },
|
|
{ code: '02', name: '朝上' }
|
|
*/
|
|
isRightList: [
|
|
{ code: false, name: '向左'},
|
|
{ code: true, name: '向右'}
|
|
],
|
|
reentryStrategyList: [
|
|
{ code: '02', name: '自动无人折返'},
|
|
{ code: '03', name: '自动换端'}
|
|
],
|
|
editModel: getModel('StationStand'),
|
|
field: '',
|
|
addModel: {
|
|
stationCode: '', // 所属车站
|
|
pointY: 0, // y坐标
|
|
width: 60,
|
|
height: 20,
|
|
standTrackCode: '', // 关联站台轨
|
|
stationstandDirection: '02', // 屏蔽门方向
|
|
right: true,
|
|
small: false
|
|
},
|
|
allModel: {
|
|
width: '',
|
|
height: ''
|
|
}
|
|
};
|
|
},
|
|
computed: {
|
|
...mapGetters('map', [
|
|
'stationList',
|
|
'stationStandList',
|
|
'sectionList',
|
|
'psdList',
|
|
'espList'
|
|
]),
|
|
form() {
|
|
const form = {
|
|
labelWidth: '130px',
|
|
items: {
|
|
code: {
|
|
name: '',
|
|
item: []
|
|
},
|
|
draw: {
|
|
name: this.$t('map.drawData'),
|
|
item: [
|
|
{ prop: 'code', label: this.$t('map.relStandCode'), type: 'select', optionLabel: 'name&&code', optionValue: 'code', options: this.stationStandList, deviceChange: this.deviceChange },
|
|
{ prop: 'name', label: this.$t('map.stationstandNameColon'), type: 'input' },
|
|
{ prop: 'position', label: this.$t('map.stationstandPosition'), type: 'coordinate', width: '120px', children: [
|
|
{ prop: 'position.x', firstLevel: 'position', secondLevel: 'x', label: 'x:', type: 'number', labelWidth: '25px' },
|
|
{ prop: 'position.y', firstLevel: 'position', secondLevel: 'y', label: 'y:', type: 'number', labelWidth: '25px' }
|
|
] },
|
|
{ prop: 'visible', label: this.$t('map.stationVisible'), type: 'checkbox' },
|
|
{ prop: 'width', label: this.$t('map.stationstandWidth'), type: 'number', min: 0, max: 2000, placeholder: 'px' },
|
|
{ prop: 'height', label: this.$t('map.stationstandHeight'), type: 'number', min: 0, max: 2000, placeholder: 'px' },
|
|
{ prop: 'standTrackCode', label: '站台轨:', type: 'selectHover', optionLabel: 'name&&code', optionValue: 'code', options: this.PhysicalSectionList, hover: this.hover, buttonType: 'stationStandCode', buttonShowType: this.stationStandCodeShow },
|
|
{ prop: 'right', label: '行驶方向:', type: 'radio', optionLabel: 'name', optionValue: 'code', border: true, radioList: this.isRightList },
|
|
{ prop: 'defaultReentryStrategy', label: '默认折返策略:', type: 'select', optionLabel: 'name', optionValue: 'code', options: this.reentryStrategyList },
|
|
{ prop: 'small', label: '是否小型站台:', type: 'checkbox', disabled: true },
|
|
{ prop: 'inside', label: '是否内站台:', type: 'checkbox' },
|
|
{ prop: 'stopJumpLamp', label: '跳停按钮:', type: 'checkbox'},
|
|
{ prop: 'stopJumpLampPoint', label: '跳停按钮坐标:', type: 'coordinate', width: '120px', isHidden: !this.isStopJumpPointsShow, children: [
|
|
{ prop: 'stopJumpLampPoint.x', firstLevel: 'stopJumpLampPoint', secondLevel: 'x', label: 'x:', type: 'number', labelWidth: '25px' },
|
|
{ prop: 'stopJumpLampPoint.y', firstLevel: 'stopJumpLampPoint', secondLevel: 'y', label: 'y:', type: 'number', labelWidth: '25px' }
|
|
] },
|
|
{ prop: 'cancelStopJumpLamp', label: '取消跳停按钮:', type: 'checkbox'},
|
|
{ prop: 'cancelStopJumpLampPoint', label: '取消跳停按钮坐标:', type: 'coordinate', width: '120px', isHidden: !this.isCancelStopJumpPointsShow, children: [
|
|
{ prop: 'cancelStopJumpLampPoint.x', firstLevel: 'cancelStopJumpLampPoint', secondLevel: 'x', label: 'x:', type: 'number', labelWidth: '25px' },
|
|
{ prop: 'cancelStopJumpLampPoint.y', firstLevel: 'cancelStopJumpLampPoint', secondLevel: 'y', label: 'y:', type: 'number', labelWidth: '25px' }
|
|
] },
|
|
{ prop: 'upDetainLamp', label: '上行扣车按钮:', type: 'checkbox'},
|
|
{ prop: 'upDetainLampPoint', label: '上行扣车按钮坐标:', type: 'coordinate', width: '120px', isHidden: !this.isUpDetainPointsShow, children: [
|
|
{ prop: 'upDetainLampPoint.x', firstLevel: 'upDetainLampPoint', secondLevel: 'x', label: 'x:', type: 'number', labelWidth: '25px' },
|
|
{ prop: 'upDetainLampPoint.y', firstLevel: 'upDetainLampPoint', secondLevel: 'y', label: 'y:', type: 'number', labelWidth: '25px' }
|
|
] },
|
|
{ prop: 'downDetainLamp', label: '下行扣车按钮:', type: 'checkbox'},
|
|
{ prop: 'downDetainLampPoint', label: '下行扣车坐标:', type: 'coordinate', width: '120px', isHidden: !this.isDownDetainPointsShow, children: [
|
|
{ prop: 'downDetainLampPoint.x', firstLevel: 'downDetainLampPoint', secondLevel: 'x', label: 'x:', type: 'number', labelWidth: '25px' },
|
|
{ prop: 'downDetainLampPoint.y', firstLevel: 'downDetainLampPoint', secondLevel: 'y', label: 'y:', type: 'number', labelWidth: '25px' }
|
|
] }
|
|
]
|
|
},
|
|
map: {
|
|
name: this.$t('map.mapData'),
|
|
item: [
|
|
{ prop: 'deviceStationCode', label: '所属设备集中站', type: 'select', optionLabel: 'name', optionValue: 'code', options: this.stationList, disabled:true},
|
|
{ prop: 'stationCode', label: '所属车站', type: 'select', optionLabel: 'name&&code', optionValue: 'code', options: this.stationList, deviceChange: this.changeStation }
|
|
]
|
|
}
|
|
}
|
|
};
|
|
return form;
|
|
},
|
|
rules() {
|
|
const rules = {
|
|
code: [
|
|
{ required: true, message: this.$t('rules.pleaseReSelectDevice'), trigger: 'change' }
|
|
],
|
|
stationCode: [
|
|
{ required: true, message: this.$t('rules.stationCode'), trigger: 'change' }
|
|
],
|
|
name: [
|
|
{ required: true, message: this.$t('rules.stationstandCountName'), trigger: 'change' }
|
|
],
|
|
width: [
|
|
{ required: true, message: this.$t('rules.stationstandWidth'), trigger: 'change' }
|
|
],
|
|
height: [
|
|
{ required: true, message: this.$t('rules.stationstandHeight'), trigger: 'change' }
|
|
],
|
|
'position.x': [
|
|
{ required: true, message: this.$t('rules.trainPositionX'), trigger: 'change' }
|
|
],
|
|
'position.y': [
|
|
{ required: true, message: this.$t('rules.trainPositionY'), trigger: 'change' }
|
|
],
|
|
standTrackCode: [
|
|
{ required: true, message: '请选择关联站台轨', trigger: 'change' }
|
|
]
|
|
};
|
|
// 清空表单验证提示信息
|
|
this.$nextTick(() => {
|
|
this.$refs.dataform && this.$refs.dataform.clearValidate();
|
|
});
|
|
|
|
return rules;
|
|
},
|
|
addForm() {
|
|
return {
|
|
labelWidth: '130px',
|
|
items: {
|
|
stand: {
|
|
name: '站台数据',
|
|
item: [
|
|
{ prop: 'stationCode', label: this.$t('map.stationstandName'), type: 'selectHover', optionLabel: 'name&&code', optionValue: 'code', options: this.stationList, hover: this.hover, buttonType: 'standSelectStationCode', buttonShowType: this.isButtonType },
|
|
{ prop: 'pointY', label: 'Y 坐标:', type: 'number' },
|
|
{ prop: 'width', label: this.$t('map.stationstandWidth'), type: 'number', min: 0, max: 2000, placeholder: 'px' },
|
|
{ prop: 'height', label: this.$t('map.stationstandHeight'), type: 'number', min: 0, max: 2000, placeholder: 'px' },
|
|
{ prop: 'standTrackCode', label: '站台轨:', type: 'selectHover', optionLabel: 'name&&code', optionValue: 'code', options: this.PhysicalSectionList, hover: this.hover, buttonType: 'sectionSelectCode', buttonShowType: this.isButtonTypeS },
|
|
{ prop: 'right', label: '行驶方向:', type: 'radio', optionLabel: 'name', optionValue: 'code', border: true, radioList: this.isRightList },
|
|
{ prop: 'small', label: '是否小型站台:', type: 'checkbox' }
|
|
]
|
|
},
|
|
door: {
|
|
name: '屏蔽门数据',
|
|
item: [
|
|
{ prop: 'stationstandDirection', label: '屏蔽门朝向:', type: 'radio', optionLabel: 'label', optionValue: 'value', radioList: this.DoorLocationTypeList }
|
|
]
|
|
}
|
|
}
|
|
};
|
|
},
|
|
createRules() {
|
|
return {
|
|
stationCode: [
|
|
{ required: true, message: this.$t('rules.stationCode'), trigger: 'change' }
|
|
],
|
|
pointY: [
|
|
{ required: true, message: '请输入y坐标', trigger: 'blur' }
|
|
],
|
|
width: [
|
|
{ required: true, message: '请输入站台宽度', trigger: 'blur' }
|
|
],
|
|
height: [
|
|
{ required: true, message: '请输入站台高度', trigger: 'blur' }
|
|
],
|
|
standTrackCode: [
|
|
{ required: true, message: '请选择关联站台轨', trigger: 'change' }
|
|
]
|
|
};
|
|
},
|
|
isButtonType() {
|
|
return this.field == 'standSelectStationCode';
|
|
},
|
|
isButtonTypeS() {
|
|
return this.field == 'sectionSelectCode';
|
|
},
|
|
isStopJumpPointsShow() {
|
|
return this.editModel.stopJumpLamp;
|
|
},
|
|
isCancelStopJumpPointsShow() {
|
|
return this.editModel.cancelStopJumpLamp;
|
|
},
|
|
isUpDetainPointsShow() {
|
|
return this.editModel.upDetainLamp;
|
|
},
|
|
isDownDetainPointsShow() {
|
|
return this.editModel.downDetainLamp;
|
|
},
|
|
PhysicalSectionList() {
|
|
return this.sectionList.filter(elem => elem.type === '01');
|
|
},
|
|
stationStandCodeShow() {
|
|
return this.field === 'stationStandCode';
|
|
}
|
|
},
|
|
mounted() {
|
|
this.$Dictionary.doorLocationType().then(list => {
|
|
this.DoorLocationTypeList = [];
|
|
list.forEach(item => {
|
|
const param = { value: item.code, label: item.name };
|
|
this.DoorLocationTypeList.push(param);
|
|
});
|
|
});
|
|
this.$Dictionary.runDirectionType().then(list => {
|
|
this.RunDirectionTypeList = list;
|
|
});
|
|
},
|
|
methods: {
|
|
deviceChange(code) {
|
|
this.$emit('setCenter', code);
|
|
this.deviceSelect(this.$store.getters['map/getDeviceByCode'](code));
|
|
},
|
|
hover(field) {
|
|
this.field = field == this.field ? '' : field;
|
|
if (this.field) {
|
|
this.$emit('deviceSelect', 'StationStand');
|
|
} else {
|
|
this.$emit('deviceSelect', '');
|
|
}
|
|
},
|
|
changeStation(station) {
|
|
this.editModel.deviceStationCode = this.getDeviceStationCode(station);
|
|
},
|
|
deviceSelect(selected) {
|
|
if (this.field != 'standSelectStationCode' && selected && selected._type == 'StationStand') {
|
|
this.editModel = getModel('StationStand');
|
|
this.$refs.dataform && this.$refs.dataform.resetFields();
|
|
this.activeName = 'first';
|
|
this.editModel = deepAssign(this.editModel, selected);
|
|
}
|
|
if (selected && selected._type.toUpperCase() === 'Station'.toUpperCase() && this.field == 'standSelectStationCode') {
|
|
this.addModel.stationCode = selected.code;
|
|
this.activeName = 'second';
|
|
this.field = '';
|
|
this.hover(this.field);
|
|
} else if (selected && selected._type.toUpperCase() === 'Section'.toUpperCase() && this.field == 'sectionSelectCode') {
|
|
this.addModel.standTrackCode = selected.code;
|
|
this.activeName = 'second';
|
|
this.field = '';
|
|
this.hover(this.field);
|
|
} else if (selected && selected._type.toUpperCase() === 'Section'.toUpperCase() && this.field == 'editSectionSelectCode') {
|
|
this.editModel.standTrackCode = selected.code;
|
|
this.activeName = 'first';
|
|
this.field = '';
|
|
this.hover(this.field);
|
|
} else if (selected && selected._type === 'Section' && this.field == 'stationStandCode') {
|
|
this.editModel.standTrackCode = selected.code;
|
|
this.activeName = 'first';
|
|
this.field = '';
|
|
this.hover(this.field);
|
|
}
|
|
},
|
|
create() {
|
|
const models = [];
|
|
const space = this.$store.state.map.map.skinVO.code == '07' ? 0 : 8;
|
|
const Standuid = getUID('PF', this.stationStandList);
|
|
const stationStandModel = getModel('StationStand');
|
|
const data = {
|
|
code: Standuid,
|
|
name: `PF${this.stationStandList.length + 1}`,
|
|
width: this.addModel.width,
|
|
height: this.addModel.height,
|
|
deviceStationCode: this.getDeviceStationCode(this.addModel.stationCode),
|
|
position: {
|
|
x: 0,
|
|
y: this.addModel.pointY
|
|
},
|
|
standTrackCode: this.addModel.standTrackCode,
|
|
right: this.addModel.right,
|
|
small: this.addModel.small
|
|
};
|
|
const model = Object.assign(stationStandModel, data);
|
|
this.stationList.forEach(elem => {
|
|
if (elem.code == this.addModel.stationCode) {
|
|
model.stationCode = elem.code;
|
|
}
|
|
});
|
|
const section = deepAssign({}, this.$store.getters['map/getDeviceByCode'](this.addModel.standTrackCode));
|
|
model.position.x = Math.abs(section.points[section.points.length - 1].x - section.points[0].x) / 2 + section.points[0].x;
|
|
models.push(model);
|
|
if (!this.addModel.small) {
|
|
const uid = getUID('Psd', this.psdList);
|
|
const param = {
|
|
_type: 'Psd',
|
|
code: uid,
|
|
name: `Psd${this.psdList.length + 1}`,
|
|
width: this.addModel.width,
|
|
height: this.$store.state.map.map.skinVO.code == '07' ? this.addModel.height : 3,
|
|
standCode: Standuid, // 关联站台唯一code
|
|
position: {
|
|
x: models[0].position.x,
|
|
y: this.addModel.pointY - (this.addModel.height / 2) - space
|
|
}
|
|
};
|
|
if (this.addModel.stationstandDirection == '01') { // 朝下
|
|
param.position.y = this.addModel.pointY + (this.addModel.height / 2) + space;
|
|
}
|
|
if (this.$store.state.map.map.skinVO.code == '07') {
|
|
param.position.y = this.addModel.pointY;
|
|
}
|
|
models.push(param);
|
|
const espUid = getUID('Esp', this.espList); // 创建紧急停车按钮
|
|
models.push({
|
|
_type: 'Esp',
|
|
code: espUid,
|
|
name: `Esp${this.espList.length + 1}`,
|
|
standCode: Standuid
|
|
});
|
|
}
|
|
section.standTrack = !this.addModel.small;
|
|
models.push(section);
|
|
this.$emit('updateMapModel', models);
|
|
},
|
|
getDeviceStationCode(stationCode) {
|
|
// 创建新站台的时候,判断该站台对应的车站是否集中站,如果不是集中站,判断该车站是否被控制
|
|
// 被控制的车站数据
|
|
let beCentralizedStation = {};
|
|
this.stationList.some(data=>{
|
|
if (data.centralized) {
|
|
if (data.code == stationCode) {
|
|
beCentralizedStation = {};
|
|
beCentralizedStation[stationCode] = data.code;
|
|
return true;
|
|
}
|
|
data.chargeStationCodeList.forEach(charge=>{
|
|
beCentralizedStation[charge] = data.code;
|
|
});
|
|
}
|
|
});
|
|
return beCentralizedStation[stationCode] || '';
|
|
},
|
|
updateMapModel(selected, isSpecialTreat) {
|
|
// 是否特殊处理
|
|
if (isSpecialTreat) {
|
|
// 用于删除
|
|
const models = [];
|
|
models.push(deepAssign(selected, { _dispose: true }));
|
|
this.espList.forEach(item => {
|
|
if (item.standCode == selected.code) {
|
|
models.push(deepAssign(item, { _dispose: true }));
|
|
}
|
|
});
|
|
this.psdList.forEach(item => {
|
|
if (item.standCode == selected.code) {
|
|
models.push(deepAssign(item, { _dispose: true }));
|
|
}
|
|
});
|
|
this.$emit('updateMapModel', models);
|
|
} else {
|
|
// 用于更新
|
|
this.$emit('updateMapModel', selected);
|
|
}
|
|
|
|
},
|
|
deleteObj() {
|
|
this.$refs.dataform.deleteObj();
|
|
},
|
|
// 修改对象
|
|
edit() {
|
|
this.$refs.dataform.edit();
|
|
},
|
|
// 批量设置
|
|
batchSettings() {
|
|
const models = [];
|
|
this.stationStandList.forEach(stationStand => {
|
|
if (!stationStand.small) {
|
|
const model = deepAssign({}, stationStand);
|
|
model.width = this.allModel.width;
|
|
model.height = this.allModel.height;
|
|
models.push(model);
|
|
}
|
|
});
|
|
this.$emit('updateMapModel', models);
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
<style rel="stylesheet/scss" lang="scss" scoped>
|
|
@import "src/styles/mixin.scss";
|
|
.card {
|
|
height: 100%;
|
|
}
|
|
</style>
|