新版地图 绘图代码调整

This commit is contained in:
joylink_cuiweidong 2020-04-28 18:16:04 +08:00
parent 493529d9bb
commit 66cdf061c6
4 changed files with 11 additions and 4 deletions

View File

@ -241,7 +241,12 @@ export default {
}, },
{ {
label: '列车报警确认', label: '列车报警确认',
children: [
{
label: '完整性报警确认',
handler: this.undeveloped handler: this.undeveloped
}
]
}, },
{ {
label: '更新列车计划', label: '更新列车计划',

View File

@ -410,7 +410,7 @@ export default {
setShowMode(showMode) { setShowMode(showMode) {
if (this.showMode !== showMode) { if (this.showMode !== showMode) {
this.setShowStation(''); this.setShowStation('');
this.$refs.switchStation.inintShowStation(); this.localStationShow && this.$refs.switchStation.inintShowStation();
} }
this.showMode = showMode; this.showMode = showMode;
const nameList = Object.keys(this.$store.state.map.map || {}); const nameList = Object.keys(this.$store.state.map.map || {});

View File

@ -118,8 +118,8 @@
<el-form-item label="侧防列表:"> <el-form-item label="侧防列表:">
<el-select v-model="addModel.flankProtectionList" clearable multiple filterable :placeholder="$t('map.pleaseSelect')"> <el-select v-model="addModel.flankProtectionList" clearable multiple filterable :placeholder="$t('map.pleaseSelect')">
<el-option <el-option
v-for="item in flankProtectList" v-for="(item,index) in flankProtectList"
:key="item.code" :key="index"
:label="`${item.number}-${item.name}`" :label="`${item.number}-${item.name}`"
:value="item.code" :value="item.code"
/> />

View File

@ -502,6 +502,8 @@ export default {
} }
.back_box{ .back_box{
left: 150px; left: 150px;
display: inline-block;
width: 57px;
} }
.map-draft{ .map-draft{