From 4488425cbf4e4d4d988be4303e381e37f90d7e97 Mon Sep 17 00:00:00 2001 From: YunaiV Date: Tue, 11 Nov 2025 19:34:42 +0800 Subject: [PATCH] =?UTF-8?q?feat=EF=BC=9A=E3=80=90antd=E3=80=91=E3=80=90mal?= =?UTF-8?q?l=E3=80=91diy-editor=20=E4=BB=A3=E7=A0=81=E9=A3=8E=E6=A0=BC?= =?UTF-8?q?=E7=BB=9F=E4=B8=80=20&=20=E9=80=90=E4=B8=AA=E6=B5=8B=E8=AF=95?= =?UTF-8?q?=2050%?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../promotion/combination/components/index.ts | 2 + .../combination/components/showcase.vue | 146 ++++++++ .../combination/components/table-select.vue | 285 +++++++++++++++ .../components/mobile/notice-bar/index.vue | 29 +- .../mobile/page-config/property.vue | 15 +- .../mobile/promotion-article/index.vue | 8 +- .../mobile/promotion-article/property.vue | 14 +- .../mobile/promotion-combination/index.vue | 39 +- .../mobile/promotion-combination/property.vue | 26 +- .../mobile/promotion-point/index.vue | 39 +- .../point/components/point-showcase.vue | 165 ++++----- .../point/components/point-table-select.vue | 346 ++++++------------ .../components/mobile/notice-bar/config.ts | 2 +- .../mobile/promotion-article/index.vue | 4 +- .../mobile/promotion-combination/index.vue | 12 +- .../mobile/promotion-point/index.vue | 2 +- .../mobile/promotion-point/property.vue | 5 - 17 files changed, 696 insertions(+), 443 deletions(-) create mode 100644 apps/web-antd/src/views/mall/promotion/combination/components/index.ts create mode 100644 apps/web-antd/src/views/mall/promotion/combination/components/showcase.vue create mode 100644 apps/web-antd/src/views/mall/promotion/combination/components/table-select.vue diff --git a/apps/web-antd/src/views/mall/promotion/combination/components/index.ts b/apps/web-antd/src/views/mall/promotion/combination/components/index.ts new file mode 100644 index 000000000..91676dbc0 --- /dev/null +++ b/apps/web-antd/src/views/mall/promotion/combination/components/index.ts @@ -0,0 +1,2 @@ +export { default as CombinationShowcase } from './showcase.vue'; + diff --git a/apps/web-antd/src/views/mall/promotion/combination/components/showcase.vue b/apps/web-antd/src/views/mall/promotion/combination/components/showcase.vue new file mode 100644 index 000000000..27b972ef5 --- /dev/null +++ b/apps/web-antd/src/views/mall/promotion/combination/components/showcase.vue @@ -0,0 +1,146 @@ + + + + + diff --git a/apps/web-antd/src/views/mall/promotion/combination/components/table-select.vue b/apps/web-antd/src/views/mall/promotion/combination/components/table-select.vue new file mode 100644 index 000000000..f36a2b588 --- /dev/null +++ b/apps/web-antd/src/views/mall/promotion/combination/components/table-select.vue @@ -0,0 +1,285 @@ + + + + diff --git a/apps/web-antd/src/views/mall/promotion/components/diy-editor/components/mobile/notice-bar/index.vue b/apps/web-antd/src/views/mall/promotion/components/diy-editor/components/mobile/notice-bar/index.vue index a8fd24c02..bc5605562 100644 --- a/apps/web-antd/src/views/mall/promotion/components/diy-editor/components/mobile/notice-bar/index.vue +++ b/apps/web-antd/src/views/mall/promotion/components/diy-editor/components/mobile/notice-bar/index.vue @@ -1,23 +1,14 @@ - - diff --git a/apps/web-antd/src/views/mall/promotion/components/diy-editor/components/mobile/page-config/property.vue b/apps/web-antd/src/views/mall/promotion/components/diy-editor/components/mobile/page-config/property.vue index 135d303d2..566574d03 100644 --- a/apps/web-antd/src/views/mall/promotion/components/diy-editor/components/mobile/page-config/property.vue +++ b/apps/web-antd/src/views/mall/promotion/components/diy-editor/components/mobile/page-config/property.vue @@ -7,25 +7,18 @@ import { Form, FormItem, Textarea } from 'ant-design-vue'; import UploadImg from '#/components/upload/image-upload.vue'; import { ColorInput } from '#/views/mall/promotion/components'; -// 导航栏属性面板 +/** 导航栏属性面板 */ defineOptions({ name: 'PageConfigProperty' }); + const props = defineProps<{ modelValue: PageConfigProperty }>(); const emit = defineEmits(['update:modelValue']); -// 表单校验 -const rules = {}; - const formData = useVModel(props, 'modelValue', emit);