From 625426566c58372c911dc9da26929a34fd3c45b1 Mon Sep 17 00:00:00 2001 From: puhui999 Date: Sat, 18 Jan 2025 17:47:10 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90=E4=BB=A3=E7=A0=81=E4=BC=98=E5=8C=96?= =?UTF-8?q?=E3=80=91MALL:=20=E4=BF=AE=E5=A4=8D=E6=A8=A1=E6=9D=BF=E8=A3=85?= =?UTF-8?q?=E4=BF=AE=E6=97=B6=E7=BB=84=E4=BB=B6=E5=B1=9E=E6=80=A7=E5=93=8D?= =?UTF-8?q?=E5=BA=94=E5=BC=8F=E4=B8=A2=E5=A4=B1=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/mobile/NavigationBar/index.vue | 6 +-- src/components/DiyEditor/index.vue | 44 +++++++++++++------ src/components/InputWithColor/index.vue | 32 ++------------ .../mall/promotion/diy/template/decorate.vue | 24 ++++++---- 4 files changed, 54 insertions(+), 52 deletions(-) diff --git a/src/components/DiyEditor/components/mobile/NavigationBar/index.vue b/src/components/DiyEditor/components/mobile/NavigationBar/index.vue index c684aee7..c5a92b31 100644 --- a/src/components/DiyEditor/components/mobile/NavigationBar/index.vue +++ b/src/components/DiyEditor/components/mobile/NavigationBar/index.vue @@ -4,7 +4,7 @@
{{ cell.text }} - +
{ } as StyleValue } // 获得搜索框属性 -const getSearchProp = (cell: NavigationBarCellProperty) => { +const getSearchProp = computed(() => (cell: NavigationBarCellProperty) => { return { height: 30, showScan: false, placeholder: cell.placeholder, borderRadius: cell.borderRadius } as SearchProperty -} +})