From 3fdeaff6039a6e5ffd08ab44b57c5909f2251f01 Mon Sep 17 00:00:00 2001 From: ulleo Date: Fri, 25 Oct 2024 16:57:41 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E5=9B=BE=E8=A1=A8):=20=E4=BF=AE=E5=A4=8D?= =?UTF-8?q?=E5=8F=8C=E8=BD=B4=E6=8A=98=E7=BA=BF=E5=9B=BE=E5=B7=A6=E8=BD=B4?= =?UTF-8?q?=E6=8A=98=E7=BA=BF=E5=B1=9E=E6=80=A7=E8=B0=83=E6=95=B4=E4=B8=8D?= =?UTF-8?q?=E7=94=9F=E6=95=88=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/DualBasicStyleSelector.vue | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/core/core-frontend/src/views/chart/components/editor/editor-style/components/DualBasicStyleSelector.vue b/core/core-frontend/src/views/chart/components/editor/editor-style/components/DualBasicStyleSelector.vue index ad3a612182..730d979014 100644 --- a/core/core-frontend/src/views/chart/components/editor/editor-style/components/DualBasicStyleSelector.vue +++ b/core/core-frontend/src/views/chart/components/editor/editor-style/components/DualBasicStyleSelector.vue @@ -91,7 +91,7 @@ const onSubAlphaChange = v => { ) as MixChartBasicStyle state.basicStyleForm.subAlpha = oldForm.subAlpha } - changeBasicStyle('alpha') + changeBasicStyle('subAlpha') } const init = () => { @@ -224,7 +224,7 @@ onMounted(() => { :min="0" :max="10" controls-position="right" - @change="changeBasicStyle('lineWidth')" + @change="changeBasicStyle('leftLineWidth')" /> @@ -241,7 +241,7 @@ onMounted(() => { :effect="themes" v-model="state.basicStyleForm.leftLineSymbol" :placeholder="t('chart.line_symbol')" - @change="changeBasicStyle('lineSymbol')" + @change="changeBasicStyle('leftLineSymbol')" > { :min="0" :max="20" controls-position="right" - @change="changeBasicStyle('lineSymbolSize')" + @change="changeBasicStyle('leftLineSymbolSize')" /> @@ -279,7 +279,7 @@ onMounted(() => { size="small" :effect="themes" v-model="state.basicStyleForm.leftLineSmooth" - @change="changeBasicStyle('lineSmooth')" + @change="changeBasicStyle('leftLineSmooth')" > {{ t('chart.line_smooth') }} @@ -308,7 +308,7 @@ onMounted(() => {