|
@@ -490,7 +490,6 @@
|
|
|
|
|
|
/** ----------------------------------底部按钮公用组件开始------------------------------------- */
|
|
|
window.showDialog=this.showDialog
|
|
|
- window.closeChild=this.closeChild
|
|
|
window.choseLayerSwitching=this.choseLayerSwitching
|
|
|
/** ----------------------------------底部按钮公用组件结束------------------------------------- */
|
|
|
},
|
|
@@ -715,23 +714,20 @@
|
|
|
showDialog(click) {
|
|
|
if (click == "eventLocation") {
|
|
|
this.$refs.eventLocation.showEventLocation()
|
|
|
- this.$refs.bottomMenu.showChild = false
|
|
|
} else if (click == "editableLayers") {
|
|
|
if (!this.$refs.supermap.isEditableLayers) {
|
|
|
- this.$refs.supermap.isEditableLayers = true,
|
|
|
- this.$refs.bottomMenu.showChild = false
|
|
|
+ this.$refs.supermap.isEditableLayers = true
|
|
|
} else {
|
|
|
- this.$refs.supermap.isEditableLayers = false,
|
|
|
- this.$refs.bottomMenu.showChild = false
|
|
|
+ this.$refs.supermap.isEditableLayers = false
|
|
|
}
|
|
|
} else if (click == "layerSwitching") {
|
|
|
- this.$refs.bottomMenu.showChild = true
|
|
|
+ if (!this.$refs.bottomMenu.showChild) {
|
|
|
+ this.$refs.bottomMenu.showChild = true
|
|
|
+ } else {
|
|
|
+ this.$refs.bottomMenu.showChild = false
|
|
|
+ }
|
|
|
}
|
|
|
},
|
|
|
- //点击关闭选择图层
|
|
|
- closeChild() {
|
|
|
- this.$refs.bottomMenu.showChild = false
|
|
|
- },
|
|
|
//选择图层
|
|
|
choseLayerSwitching(url) {
|
|
|
this.$refs.supermap.layerSwitching(url, true);
|