From d6f8f3b41b1422d051eb7931e5a79080ba3c4de0 Mon Sep 17 00:00:00 2001 From: "liu.shiyi" Date: Thu, 14 Sep 2023 16:59:41 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E6=B8=90=E5=8F=98=E8=89=B2=E5=8F=96?= =?UTF-8?q?=E6=B6=88=E5=85=B6=E4=B8=AD=E4=B8=80=E4=B8=AA=E9=A2=9C=E8=89=B2?= =?UTF-8?q?=E6=97=B6=E9=BB=98=E8=AE=A4=E4=B8=BA=E7=BA=AF=E8=89=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../BigScreenDesign/RightSetting/TextGradient/index.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/data-room-ui/packages/BigScreenDesign/RightSetting/TextGradient/index.vue b/data-room-ui/packages/BigScreenDesign/RightSetting/TextGradient/index.vue index 99e9a471..d2b65dc7 100644 --- a/data-room-ui/packages/BigScreenDesign/RightSetting/TextGradient/index.vue +++ b/data-room-ui/packages/BigScreenDesign/RightSetting/TextGradient/index.vue @@ -92,9 +92,9 @@ export default { }, colorChange (val) { if (!this.startColor && this.endColor) { - this.colorsValue = `${this.position} ,#ffffff,${this.endColor}` + this.colorsValue = `${this.position} ,${this.endColor},${this.endColor}` } else if (this.startColor && !this.endColor) { - this.colorsValue = `${this.position} ,${this.startColor} ,#ffffff` + this.colorsValue = `${this.position} ,${this.startColor} ,${this.startColor}` } else if (!this.startColor && !this.endColor) { this.colorsValue = `${this.position} ,#ffffff ,#ffffff` } else {