From 85b6529fde4e584a0e48d8c25a455a4bace89708 Mon Sep 17 00:00:00 2001 From: fit2cloud-chenyw Date: Tue, 27 Sep 2022 17:28:43 +0800 Subject: [PATCH 1/3] =?UTF-8?q?fix(=E8=A7=86=E5=9B=BE):=20=E5=A4=96?= =?UTF-8?q?=E8=BE=B9=E8=B7=9D=E5=8F=AF=E4=BB=A5=E8=BE=93=E5=85=A5=E9=99=90?= =?UTF-8?q?=E5=88=B6=E4=BB=A5=E5=A4=96=E7=9A=84=E6=95=B0=E5=AD=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../component-style/MarginSelector.vue | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/frontend/src/views/chart/components/component-style/MarginSelector.vue b/frontend/src/views/chart/components/component-style/MarginSelector.vue index 41ebf2aa2a..3ceaf0558c 100644 --- a/frontend/src/views/chart/components/component-style/MarginSelector.vue +++ b/frontend/src/views/chart/components/component-style/MarginSelector.vue @@ -11,25 +11,25 @@
- + - + - + - + @@ -196,4 +196,12 @@ export default { cursor: pointer; z-index: 1003; } +::v-deep .hide-icon-number input::-webkit-outer-spin-button, +::v-deep .hide-icon-number input::-webkit-inner-spin-button { + -webkit-appearance: none !important; +} +::v-deep .hide-icon-number input[type="number"] { + -moz-appearance: textfield !important; +} + From d7d576d0216538f1610b20558122df14039ea610 Mon Sep 17 00:00:00 2001 From: fit2cloud-chenyw Date: Tue, 27 Sep 2022 17:41:04 +0800 Subject: [PATCH 2/3] =?UTF-8?q?perf(=E8=A7=86=E5=9B=BE):=20=E6=96=B0?= =?UTF-8?q?=E5=BB=BA=E8=A7=86=E5=9B=BE=E5=A4=96=E8=BE=B9=E8=B7=9D=E7=BB=A7?= =?UTF-8?q?=E6=89=BF=E4=BA=86=E4=B9=8B=E5=89=8D=E7=BC=96=E8=BE=91=E7=9A=84?= =?UTF-8?q?=E8=A7=86=E5=9B=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../views/chart/components/component-style/MarginSelector.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/frontend/src/views/chart/components/component-style/MarginSelector.vue b/frontend/src/views/chart/components/component-style/MarginSelector.vue index 41ebf2aa2a..4bdb5ef16d 100644 --- a/frontend/src/views/chart/components/component-style/MarginSelector.vue +++ b/frontend/src/views/chart/components/component-style/MarginSelector.vue @@ -117,7 +117,11 @@ export default { } if (customStyle.margin) { this.marginForm = customStyle.margin + } else { + this.marginForm = JSON.parse(JSON.stringify(DEFAULT_MARGIN_STYLE)) } + } else { + this.marginForm = JSON.parse(JSON.stringify(DEFAULT_MARGIN_STYLE)) } }, From f5ca282259429f19a988936c0221d168cbdff630 Mon Sep 17 00:00:00 2001 From: fit2cloud-chenyw Date: Tue, 27 Sep 2022 17:53:45 +0800 Subject: [PATCH 3/3] =?UTF-8?q?fix(=E4=BB=AA=E8=A1=A8=E6=9D=BF):=20?= =?UTF-8?q?=E8=BF=87=E6=BB=A4=E5=99=A8=E6=A0=87=E9=A2=98=E9=9A=90=E8=97=8F?= =?UTF-8?q?=E5=90=8E=E5=86=8D=E5=BC=80=E5=90=AF=E8=A2=AB=E6=B8=85=E7=A9=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/components/dataease/DeOutWidget.vue | 4 +- frontend/src/views/panel/edit/index.vue | 16 +-- .../src/views/panel/filter/ButtonDialog.vue | 2 +- .../panel/filter/filterMain/FilterControl.vue | 112 ++++++++---------- 4 files changed, 62 insertions(+), 72 deletions(-) diff --git a/frontend/src/components/dataease/DeOutWidget.vue b/frontend/src/components/dataease/DeOutWidget.vue index b1c3bd26e5..14f1762054 100644 --- a/frontend/src/components/dataease/DeOutWidget.vue +++ b/frontend/src/components/dataease/DeOutWidget.vue @@ -1,7 +1,7 @@