From 963510f0b8ad2af6e7755e652bae7f222fe9dee7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BA=8E=E8=82=96=E7=A3=8A?= <18851179580@163.com> Date: Tue, 27 Aug 2024 11:27:25 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=95=86=E5=93=81=E6=A0=87?= =?UTF-8?q?=E7=AD=BE=E6=98=BE=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/model-shop-list/index.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/model-shop-list/index.vue b/src/components/model-shop-list/index.vue index 00cd4e9c..3877ff98 100644 --- a/src/components/model-shop-list/index.vue +++ b/src/components/model-shop-list/index.vue @@ -354,6 +354,8 @@ const icon_style = (item: { bg_color: string; color: string; br_color: string; } let style = `background: ${item.bg_color};color: ${item.color};`; if (!isEmpty(item.br_color)) { style += `border: 1px solid ${item.br_color};` + } else { + style += `border: 1px solid ${item.bg_color};` } return style; }