From b8f3f74a01e8d1be6c694f09f9faab8f78a9de4c Mon Sep 17 00:00:00 2001 From: YunaiV Date: Sat, 1 Nov 2025 21:29:25 +0800 Subject: [PATCH] =?UTF-8?q?feat=EF=BC=9A=E3=80=90mall=E3=80=91diy=20editor?= =?UTF-8?q?=20=E7=9A=84=20tab-bar=20=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../diy-editor/components/mobile/tab-bar/property.vue | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/apps/web-ele/src/views/mall/promotion/components/diy-editor/components/mobile/tab-bar/property.vue b/apps/web-ele/src/views/mall/promotion/components/diy-editor/components/mobile/tab-bar/property.vue index a258901dd..6c3368618 100644 --- a/apps/web-ele/src/views/mall/promotion/components/diy-editor/components/mobile/tab-bar/property.vue +++ b/apps/web-ele/src/views/mall/promotion/components/diy-editor/components/mobile/tab-bar/property.vue @@ -23,7 +23,8 @@ import { } from '#/views/mall/promotion/components'; import { component, THEME_LIST } from './config'; -// 底部导航栏 + +/** 底部导航栏 */ defineOptions({ name: 'TabBarProperty' }); const props = defineProps<{ modelValue: TabBarProperty }>(); @@ -33,7 +34,7 @@ const formData = useVModel(props, 'modelValue', emit); // 将数据库的值更新到右侧属性栏 component.property.items = formData.value.items; -// 要的主题 +/** 处理主题变更 */ const handleThemeChange = () => { const theme = THEME_LIST.find((theme) => theme.id === formData.value.theme); if (theme?.color) { @@ -44,7 +45,6 @@ const handleThemeChange = () => { - -