2019-11-29 12:51:58 +08:00
|
|
|
<template>
|
|
|
|
<el-tabs v-model="activeName" class="card">
|
|
|
|
<el-tab-pane class="view-control" :label="$t('map.property')" name="first">
|
|
|
|
<div style="height: calc(100% - 46px);">
|
|
|
|
<el-scrollbar wrap-class="scrollbar-wrapper">
|
|
|
|
<config-list ref="dataform" :form="form" :form-model="editModel" :rules="rules" />
|
|
|
|
</el-scrollbar>
|
|
|
|
</div>
|
|
|
|
<div class="button_box">
|
|
|
|
<el-button-group class="map-draft-group">
|
2019-12-03 15:30:41 +08:00
|
|
|
<el-button type="primary" size="small" @click="edit">{{ $t('map.updateObj') }}</el-button>
|
2019-11-29 12:51:58 +08:00
|
|
|
<el-button type="danger" size="small" @click="deleteObj">{{ $t('map.deleteObj') }}</el-button>
|
|
|
|
</el-button-group>
|
|
|
|
</div>
|
|
|
|
</el-tab-pane>
|
|
|
|
<el-tab-pane class="view-control" :label="$t('map.newConstruction')" name="second">
|
|
|
|
<div style="height: calc(100% - 46px);">
|
|
|
|
<el-scrollbar wrap-class="scrollbar-wrapper">
|
|
|
|
<el-form ref="make" label-width="140px" :model="addModel" :rules="createRules" size="mini">
|
|
|
|
<el-form-item :label="$t('map.stationstandName')" prop="stationCode">
|
2019-12-03 15:22:16 +08:00
|
|
|
<el-select v-model="addModel.stationCode" filterable @change="changeStation">
|
2019-11-29 12:51:58 +08:00
|
|
|
<el-option
|
|
|
|
v-for="item in stationList"
|
|
|
|
:key="item.code"
|
|
|
|
:label="item.name + ' (' + item.code+ ')'"
|
|
|
|
:value="item.code"
|
|
|
|
/>
|
|
|
|
</el-select>
|
2019-12-04 13:00:24 +08:00
|
|
|
<el-button
|
|
|
|
:type="field === 'standSelectStationCode' ? 'danger' : 'primary'"
|
|
|
|
size="small"
|
|
|
|
@click="hover('standSelectStationCode')"
|
|
|
|
>{{ $t('map.activate') }}</el-button>
|
2019-11-29 12:51:58 +08:00
|
|
|
</el-form-item>
|
2019-12-06 18:03:13 +08:00
|
|
|
<!-- <el-form-item :label="$t('map.stationstandDirection')" prop="doorLocationType">
|
2019-11-29 12:51:58 +08:00
|
|
|
<el-select v-model="addModel.doorLocationType" filterable :placeholder="$t('map.pleaseSelect')">
|
|
|
|
<el-option
|
|
|
|
v-for="item in DoorLocationTypeList"
|
|
|
|
:key="item.code"
|
|
|
|
:label="item.name"
|
|
|
|
:value="item.code"
|
|
|
|
/>
|
|
|
|
</el-select>
|
2019-12-06 18:03:13 +08:00
|
|
|
</el-form-item> -->
|
|
|
|
<!-- <el-form-item :label="$t('map.stationstandHasDoor')" prop="hasDoor">
|
2019-11-29 12:51:58 +08:00
|
|
|
<el-checkbox v-model="addModel.hasDoor" />
|
2019-12-06 18:03:13 +08:00
|
|
|
</el-form-item> -->
|
2019-11-29 12:51:58 +08:00
|
|
|
</el-form>
|
|
|
|
</el-scrollbar>
|
|
|
|
</div>
|
|
|
|
<div class="button_box">
|
|
|
|
<el-button-group class="map-draft-group">
|
|
|
|
<el-button type="primary" size="small" @click="create">{{ $t('map.create') }}</el-button>
|
|
|
|
</el-button-group>
|
|
|
|
</div>
|
|
|
|
</el-tab-pane>
|
|
|
|
</el-tabs>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import { mapGetters } from 'vuex';
|
2019-12-06 10:31:19 +08:00
|
|
|
import { getUID } from '@/jmapNew/utils/Uid';
|
2019-11-29 12:51:58 +08:00
|
|
|
import ConfigList from './config/list';
|
|
|
|
import { deepAssign } from '@/utils/index';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'StationStandDraft',
|
|
|
|
components: {
|
|
|
|
ConfigList
|
|
|
|
},
|
|
|
|
props: {
|
|
|
|
selected: {
|
|
|
|
type: Object,
|
|
|
|
default: function () {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
activeName: 'first',
|
|
|
|
DoorLocationTypeList: [],
|
|
|
|
RunDirectionTypeList: [],
|
|
|
|
/*
|
|
|
|
{ code: '01', name: '朝下' },
|
|
|
|
{ code: '02', name: '朝上' }
|
|
|
|
*/
|
|
|
|
editModel: {
|
|
|
|
code: '',
|
|
|
|
name: '',
|
2019-12-06 18:03:13 +08:00
|
|
|
// doorLocationType: '', // 站台方向
|
|
|
|
deviceStationCode: '', // 设备集中站
|
|
|
|
// hasDoor: false, // 屏蔽门是否显示
|
2019-11-29 12:51:58 +08:00
|
|
|
width: 0,
|
|
|
|
height: 0,
|
2019-12-06 18:03:13 +08:00
|
|
|
stationCode: '', // 所属车站
|
|
|
|
position: { x: 0, y: 0 },
|
|
|
|
visible: true // 是否显示
|
|
|
|
// direction: '' // 上下行方向
|
2019-11-29 12:51:58 +08:00
|
|
|
},
|
2019-12-04 13:00:24 +08:00
|
|
|
field: '',
|
2019-11-29 12:51:58 +08:00
|
|
|
addModel: {
|
|
|
|
stationCode: '',
|
2019-12-06 18:03:13 +08:00
|
|
|
// doorLocationType: '01',
|
|
|
|
deviceStationCode: ''
|
|
|
|
// hasDoor: true
|
2019-11-29 12:51:58 +08:00
|
|
|
}
|
|
|
|
};
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
...mapGetters('map', [
|
|
|
|
'stationList',
|
|
|
|
'stationStandList',
|
|
|
|
'lineCode'
|
|
|
|
]),
|
|
|
|
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, change: true, deviceChange: this.deviceChange },
|
2019-12-06 18:03:13 +08:00
|
|
|
{ prop: 'name', label: this.$t('map.stationstandNameColon'), type: 'input' },
|
2019-11-29 12:51:58 +08:00
|
|
|
{ prop: 'position', label: this.$t('map.stationstandPosition'), type: 'coordinate', width: '120px', children: [
|
2019-12-06 18:03:13 +08:00
|
|
|
{ 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' }
|
2019-11-29 12:51:58 +08:00
|
|
|
] },
|
2019-12-06 18:03:13 +08:00
|
|
|
{ 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' }
|
2019-11-29 12:51:58 +08:00
|
|
|
]
|
|
|
|
},
|
|
|
|
map: {
|
|
|
|
name: this.$t('map.mapData'),
|
|
|
|
item: [
|
2019-12-06 18:03:13 +08:00
|
|
|
{ prop: 'deviceStationCode', label: this.$t('map.equipmentStation'), type: 'select', optionLabel: 'name', optionValue: 'code', options: this.stationList, disabled:true},
|
|
|
|
{ prop: 'stationCode', label: this.$t('map.belongsStation'), type: 'select', optionLabel: 'name&&code', optionValue: 'code', options: this.stationList }
|
2019-11-29 12:51:58 +08:00
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
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' }
|
|
|
|
]
|
|
|
|
};
|
|
|
|
// 清空表单验证提示信息
|
|
|
|
this.$nextTick(() => {
|
|
|
|
this.$refs.dataform &&
|
|
|
|
this.$refs.dataform.clearValidate();
|
|
|
|
});
|
|
|
|
|
|
|
|
return rules;
|
|
|
|
},
|
|
|
|
createRules() {
|
|
|
|
return {
|
|
|
|
stationCode: [
|
|
|
|
{ required: true, message: this.$t('rules.stationCode'), trigger: 'change' }
|
2019-12-03 17:52:39 +08:00
|
|
|
]
|
2019-11-29 12:51:58 +08:00
|
|
|
};
|
|
|
|
}
|
|
|
|
},
|
|
|
|
watch: {
|
|
|
|
selected: function (val, oldVal) {
|
|
|
|
this.deviceSelect(val);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
mounted() {
|
|
|
|
this.$Dictionary.doorLocationType().then(list => {
|
|
|
|
this.DoorLocationTypeList = list;
|
|
|
|
});
|
|
|
|
this.$Dictionary.runDirectionType().then(list => {
|
|
|
|
this.RunDirectionTypeList = list;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
deviceChange(code) {
|
|
|
|
this.$emit('setCenter', code);
|
|
|
|
this.deviceSelect(this.$store.getters['map/getDeviceByCode'](code));
|
2019-12-02 13:17:41 +08:00
|
|
|
this.edit();
|
|
|
|
},
|
2019-12-03 17:52:39 +08:00
|
|
|
changeStation(data) {
|
2019-12-04 13:00:24 +08:00
|
|
|
const station = this.stationList.find(elem => { return elem.code == data; });
|
2019-12-03 17:52:39 +08:00
|
|
|
if (station) {
|
|
|
|
if (station.centralized) {
|
|
|
|
this.addModel.deviceStationCode = station.code;
|
|
|
|
} else {
|
|
|
|
this.addModel.deviceStationCode = station.concentrateStationCode;
|
2019-12-03 15:22:16 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2019-12-04 13:00:24 +08:00
|
|
|
hover(field) {
|
|
|
|
this.field = field === this.field ? '' : field;
|
2019-12-04 13:38:32 +08:00
|
|
|
this.$emit('standStationCode', this.field);
|
2019-12-04 13:00:24 +08:00
|
|
|
},
|
2019-11-29 12:51:58 +08:00
|
|
|
deviceSelect(selected) {
|
2019-12-04 13:00:24 +08:00
|
|
|
// this.$refs.make.resetFields();
|
|
|
|
if (this.field.toUpperCase() != 'standSelectStationCode'.toUpperCase() && selected && selected._type.toUpperCase() === 'StationStand'.toUpperCase()) {
|
2019-12-04 13:38:32 +08:00
|
|
|
this.$refs.dataform.resetFields();
|
2019-11-29 12:51:58 +08:00
|
|
|
this.activeName = 'first';
|
|
|
|
this.editModel = deepAssign(this.editModel, selected);
|
2019-12-04 13:00:24 +08:00
|
|
|
}
|
|
|
|
if (selected && selected._type.toUpperCase() === 'Station'.toUpperCase() && this.field.toUpperCase() === 'standSelectStationCode'.toUpperCase()) {
|
2019-11-29 12:51:58 +08:00
|
|
|
this.addModel.stationCode = selected.code;
|
2019-12-04 13:00:24 +08:00
|
|
|
this.activeName = 'second';
|
|
|
|
this.field = '';
|
2019-12-04 13:38:32 +08:00
|
|
|
this.$emit('standStationCode', '');
|
2019-11-29 12:51:58 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
create() {
|
|
|
|
this.$refs.make.validate((valid) => {
|
|
|
|
if (valid) {
|
2019-12-06 13:56:18 +08:00
|
|
|
const uid = getUID('PF', this.stationStandList);
|
2019-11-29 12:51:58 +08:00
|
|
|
const model = {
|
|
|
|
_type: 'StationStand',
|
|
|
|
code: uid,
|
2019-12-06 18:03:13 +08:00
|
|
|
name: `PF${this.stationStandList.length + 1}`,
|
2019-11-29 12:51:58 +08:00
|
|
|
width: 40,
|
|
|
|
height: 20,
|
2019-12-06 18:03:13 +08:00
|
|
|
// doorLocationType: this.addModel.doorLocationType,
|
2019-11-29 12:51:58 +08:00
|
|
|
deviceStationCode: this.addModel.deviceStationCode,
|
2019-12-06 18:03:13 +08:00
|
|
|
visible: true
|
|
|
|
// direction: '01',
|
|
|
|
// hasDoor: this.addModel.hasDoor
|
2019-11-29 12:51:58 +08:00
|
|
|
};
|
|
|
|
this.stationList.forEach(elem => {
|
|
|
|
if (elem.code === this.addModel.stationCode) {
|
|
|
|
model.position = { x: elem.position.x, y: elem.position.y + 40 };
|
|
|
|
model.stationCode = elem.code;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
this.$emit('updateMapModel', model);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
// 修改对象
|
|
|
|
edit() {
|
|
|
|
this.$refs.dataform.validate((valid) => {
|
|
|
|
if (valid) {
|
|
|
|
const data = Object.assign({_type: 'StationStand'}, this.editModel);
|
|
|
|
this.$emit('updateMapModel', data);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
// 删除对象
|
|
|
|
deleteObj() {
|
|
|
|
const selected = this.$store.getters['map/getDeviceByCode'](this.editModel.code);
|
|
|
|
if (selected && selected._type.toUpperCase() === 'StationStand'.toUpperCase()) {
|
|
|
|
const _that = this;
|
|
|
|
this.$confirm(this.$t('tip.confirmDeletion'), this.$t('tip.hint'), {
|
|
|
|
confirmButtonText: this.$t('tip.confirm'),
|
|
|
|
cancelButtonText: this.$t('tip.cancel'),
|
|
|
|
type: 'warning'
|
|
|
|
}).then(() => {
|
|
|
|
_that.$emit('updateMapModel', {...selected, _dispose: true});
|
|
|
|
_that.deviceSelect();
|
2019-12-06 09:01:05 +08:00
|
|
|
this.$refs.dataform.resetFields();
|
2019-11-29 12:51:58 +08:00
|
|
|
}).catch(() => {
|
|
|
|
_that.$message.info(this.$t('tip.cancelledDelete'));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
<style rel="stylesheet/scss" lang="scss" scoped>
|
|
|
|
@import "src/styles/mixin.scss";
|
|
|
|
.view-control{
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.card {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
</style>
|