区段站台问题调整

This commit is contained in:
fan 2019-12-17 17:27:35 +08:00
parent 6195338947
commit 88eeaff1e2
2 changed files with 5 additions and 5 deletions

View File

@ -7,7 +7,7 @@
</el-scrollbar> </el-scrollbar>
</div> </div>
<div class="button_box"> <div class="button_box">
<el-button type="primary" size="small" @click="verifyData" style="margin-top: 5px; margin-left: 10px">区段关系校验</el-button> <el-button type="primary" size="small" style="margin-top: 5px; margin-left: 10px" @click="verifyData">区段关系校验</el-button>
<el-button-group class="map-draft-group"> <el-button-group class="map-draft-group">
<el-button type="primary" size="small" @click="edit">{{ $t('map.updateObj') }}</el-button> <el-button type="primary" size="small" @click="edit">{{ $t('map.updateObj') }}</el-button>
<el-button type="danger" size="small" @click="deleteObj">{{ $t('map.deleteObj') }}</el-button> <el-button type="danger" size="small" @click="deleteObj">{{ $t('map.deleteObj') }}</el-button>
@ -252,10 +252,10 @@ export default {
segmentationPosition: { x: 0, y: 0 }, segmentationPosition: { x: 0, y: 0 },
transferTrackName: '', transferTrackName: '',
transferTrackNamePosition: { x: 0, y: 0 }, transferTrackNamePosition: { x: 0, y: 0 },
isSwitchSection: '', isSwitchSection: false,
relSwitchCode: '', relSwitchCode: '',
stationCode: '', stationCode: '',
logicSectionNameSort: '', logicSectionNameSort: true,
sepTypeLeft: '', sepTypeLeft: '',
sepTypeRight: '', sepTypeRight: '',
offsetRight: 0, offsetRight: 0,
@ -426,7 +426,7 @@ export default {
{ prop: 'relSwitchCode', label: this.$t('map.relSwitchCode'), type: 'select', optionLabel: 'code&&name', optionValue: 'code', options: this.switchList, change: true, deviceChange: this.deviceChange, isHidden: !this.isRelSwitchCode, disabled: true }, { prop: 'relSwitchCode', label: this.$t('map.relSwitchCode'), type: 'select', optionLabel: 'code&&name', optionValue: 'code', options: this.switchList, change: true, deviceChange: this.deviceChange, isHidden: !this.isRelSwitchCode, disabled: true },
{ prop: 'logicSectionShow', label: this.$t('map.displayLogicalExtents'), type: 'checkbox', isHidden: !this.isSwitchSectionShow }, // 1 { prop: 'logicSectionShow', label: this.$t('map.displayLogicalExtents'), type: 'checkbox', isHidden: !this.isSwitchSectionShow }, // 1
{ prop: 'logicSectionNameSort', label: this.$t('map.logicSectionNameSort'), type: 'radio', isHidden: !this.isLogicSectionNameSort, radioList: [ { prop: 'logicSectionNameSort', label: this.$t('map.logicSectionNameSort'), type: 'radio', optionLabel: 'label', optionValue: 'value', isHidden: !this.isLogicSectionNameSort, radioList: [
{value: true, label: this.$t('map.fromSmallToLarge')}, {value: true, label: this.$t('map.fromSmallToLarge')},
{value: false, label: this.$t('map.fromLargeToSmall')} {value: false, label: this.$t('map.fromLargeToSmall')}
] }, // 1 ] }, // 1

View File

@ -189,7 +189,7 @@ export default {
door: { door: {
name: '屏蔽门数据', name: '屏蔽门数据',
item: [ item: [
{ prop: 'stationstandDirection', label: '屏蔽门朝向:', type: 'radio', radioList: this.DoorLocationTypeList } { prop: 'stationstandDirection', label: '屏蔽门朝向:', type: 'radio', optionLabel: 'label', optionValue: 'value', radioList: this.DoorLocationTypeList }
] ]
} }
} }