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; }