From 19804617ea6d48762342ef858d32ae60838b7fa5 Mon Sep 17 00:00:00 2001 From: fit2cloud-chenyw Date: Fri, 1 Jul 2022 16:41:54 +0800 Subject: [PATCH 1/3] =?UTF-8?q?fix(=E8=A7=86=E5=9B=BE):=20=E7=AC=A6?= =?UTF-8?q?=E5=8F=B7=E5=9C=B0=E5=9B=BE=E6=9F=A5=E7=9C=8B=E6=95=B0=E6=8D=AE?= =?UTF-8?q?=E6=98=8E=E7=BB=86=E6=A0=B7=E5=BC=8F=E9=94=99=E4=BD=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/components/canvas/custom-component/UserViewDialog.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/canvas/custom-component/UserViewDialog.vue b/frontend/src/components/canvas/custom-component/UserViewDialog.vue index 18b8eeca13..ce8a4e8a09 100644 --- a/frontend/src/components/canvas/custom-component/UserViewDialog.vue +++ b/frontend/src/components/canvas/custom-component/UserViewDialog.vue @@ -68,7 +68,7 @@ export default { }, computed: { isAbsoluteContainer() { - return this.chart.type === 'symbol-map' + return this.showChartCanvas && this.chart.type === 'symbol-map' }, showChartCanvas() { return this.openType === 'enlarge' From c81e7f1852110d25b87cbe5cf1ca7284cb17d6dd Mon Sep 17 00:00:00 2001 From: dataeaseShu <106045316+dataeaseShu@users.noreply.github.com> Date: Fri, 1 Jul 2022 16:50:05 +0800 Subject: [PATCH 2/3] =?UTF-8?q?fix(=E4=BF=AE=E5=A4=8D=E8=BF=87=E6=BB=A4?= =?UTF-8?q?=E7=BB=84=E4=BB=B6=E6=B7=BB=E5=8A=A0=E8=99=9A=E6=8B=9F=E5=8C=96?= =?UTF-8?q?=E5=8A=9F=E8=83=BD=E5=90=8E,=E5=AF=BC=E8=87=B4=E7=9A=84?= =?UTF-8?q?=E8=87=AA=E5=AE=9A=E4=B9=89=E6=A0=B7=E5=BC=8F=E4=B8=8D=E7=94=9F?= =?UTF-8?q?=E6=95=88):?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/components/ElVisualSelect/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/ElVisualSelect/index.vue b/frontend/src/components/ElVisualSelect/index.vue index e97ac20409..87b6183616 100644 --- a/frontend/src/components/ElVisualSelect/index.vue +++ b/frontend/src/components/ElVisualSelect/index.vue @@ -3,7 +3,7 @@ ref="visualSelect" v-model="selectValue" :class="classId" - popper-class="VisualSelects" + popper-class="VisualSelects coustom-de-select" no-match-text=" " v-bind="$attrs" v-on="$listeners" From 998369e920f2a589ffb66f3147073b9e3e8a5c20 Mon Sep 17 00:00:00 2001 From: wangjiahao <1522128093@qq.com> Date: Fri, 1 Jul 2022 16:57:02 +0800 Subject: [PATCH 3/3] =?UTF-8?q?refactor(=E4=BB=AA=E8=A1=A8=E6=9D=BF):=20?= =?UTF-8?q?=E5=8D=A1=E7=89=87=E7=BB=84=E4=BB=B6=E5=86=85=E9=83=A8=E8=A7=86?= =?UTF-8?q?=E5=9B=BE=E5=A2=9E=E5=8A=A0=E6=94=BE=E5=A4=A7=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/components/canvas/components/Editor/EditBarView.vue | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/frontend/src/components/canvas/components/Editor/EditBarView.vue b/frontend/src/components/canvas/components/Editor/EditBarView.vue index 4131ff84cd..3a7aab4566 100644 --- a/frontend/src/components/canvas/components/Editor/EditBarView.vue +++ b/frontend/src/components/canvas/components/Editor/EditBarView.vue @@ -7,6 +7,9 @@ + + +
@@ -88,7 +91,7 @@ export default { this.$emit('amRemoveItem') }, showViewDetails(params) { - this.$emit('showViewDetails', params) + this.$emit('showViewDetails', { openType: params }) }, positionCheck(position) { return this.showPosition.includes(position)