From 61903a7e8e95405c23d627ad3c08618bd775715e Mon Sep 17 00:00:00 2001 From: chenyabin <Chenab123!> Date: 星期一, 12 四月 2021 11:42:19 +0800 Subject: [PATCH] 弹框样式修改&& 左侧联动关闭操作面板 --- src/components/panel/ToolBoxPanel.vue | 20 ++++++++++++++++++++ 1 files changed, 20 insertions(+), 0 deletions(-) diff --git a/src/components/panel/ToolBoxPanel.vue b/src/components/panel/ToolBoxPanel.vue index 9733c83..1e62696 100644 --- a/src/components/panel/ToolBoxPanel.vue +++ b/src/components/panel/ToolBoxPanel.vue @@ -96,6 +96,9 @@ // 娴嬮噺鐨勬柟娉� import Measure from '@/components/plugin/MeaSure' +// +import bus from '@/eventBus' + export default { name: 'ToolBoxPanel', components: { @@ -263,7 +266,19 @@ ] } }, + mounted () { + /* import bus from '@/eventBus' */ + const that = this + bus.$on('changeState', function (state) { + if (state.num !== 1 && state.type) { + that.selectGroup = false + that.isShow = [] + that.active = -1 + } + }) + }, methods: { + init (map) { this.map = map this.toolBoxPanelVisible = true @@ -391,6 +406,11 @@ this.isShow = !this.isShow this.active = -1 } + const state = { + type: this.selectGroup, + num: 1 + } + bus.$emit('changeState', state) } } } -- Gitblit v1.8.0