From 8f2c3ed231924e9fcb0ff302a34c8ec9360fe6cf Mon Sep 17 00:00:00 2001 From: ulleo Date: Tue, 8 Aug 2023 17:03:36 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=85=B3=E9=97=AD=E7=BB=84=E5=90=88?= =?UTF-8?q?=E5=9B=BE=E9=AB=98=E7=BA=A7=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/views/chart/view/ChartEdit.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/frontend/src/views/chart/view/ChartEdit.vue b/frontend/src/views/chart/view/ChartEdit.vue index 5e141c63ee..0d5faf0cf6 100644 --- a/frontend/src/views/chart/view/ChartEdit.vue +++ b/frontend/src/views/chart/view/ChartEdit.vue @@ -1336,10 +1336,10 @@ > @@ -1955,11 +1955,11 @@ export default { return this.$store.state.panel.panelInfo }, showCfg() { - return includesAny(this.view.type, 'bar', 'line', 'area', 'mix', 'gauge', 'table') || + return includesAny(this.view.type, 'bar', 'line', 'area', 'gauge', 'table') || equalsAny(this.view.type, 'text', 'label', 'map', 'buddle-map') }, showSeniorCfg() { - return includesAny(this.view.type, 'bar', 'line', 'area', 'mix', 'table') || + return includesAny(this.view.type, 'bar', 'line', 'area', 'table') || equalsAny(this.view.type, 'table-normal', 'table-info', 'map') }, showFunctionCfg() { @@ -1973,7 +1973,7 @@ export default { if (this.view.type === 'bidirectional-bar') { return false } - return includesAny(this.view.type, 'bar', 'line', 'area', 'mix', 'gauge') || + return includesAny(this.view.type, 'bar', 'line', 'area', 'gauge') || equalsAny(this.view.type, 'text', 'label') || (this.view.render === 'antv' && this.view.type.includes('table')) },