From f76b96c26b878840ecc80b79d1e28e477d5573e6 Mon Sep 17 00:00:00 2001 From: suerprisePlus <15810472099@163.com> Date: 星期一, 01 七月 2024 18:10:25 +0800 Subject: [PATCH] 模型发布管理 添加 --- src/views/visual/mapView/index.vue | 11 +++++++---- 1 files changed, 7 insertions(+), 4 deletions(-) diff --git a/src/views/visual/mapView/index.vue b/src/views/visual/mapView/index.vue index dcc3b89..a1378c1 100644 --- a/src/views/visual/mapView/index.vue +++ b/src/views/visual/mapView/index.vue @@ -31,6 +31,7 @@ <layer-manager ref="layerManager"></layer-manager> <location ref="location"></location> <knowledge ref="knowledge"></knowledge> + <lineRoaming ref="lineRoaming"></lineRoaming> </div> </div> </template> @@ -42,10 +43,11 @@ import menuManager from '@/assets/js/mapSdk/menuManager.js'; import location from './location.vue'; import knowledge from './knowledge.vue'; +import lineRoaming from './lineRoaming.vue'; export default { name: 'mapView', - components: { layerManager, location, knowledge }, + components: { layerManager, location, knowledge, lineRoaming }, data() { return { menuIsShow: false, @@ -75,9 +77,7 @@ this.setPopCloseAll(); const obj = menuManager.init(command); if (obj) { - this.setPopShow(obj); - } }, setPopCloseAll() { @@ -95,6 +95,9 @@ break; case '鐭ヨ瘑鍥捐氨': this.$refs && this.$refs.knowledge && this.$refs.knowledge.open(); + break; + case '绾胯矾婕父': + this.$refs && this.$refs.lineRoaming && this.$refs.lineRoaming.open(); break; default: break; @@ -114,7 +117,7 @@ .menuBox { position: absolute; - z-index: 99999; + z-index: 40; top: 20px; right: 2px; border-radius: 0 6px 6px 0; -- Gitblit v1.9.3