From 82bc4e8b70158d498425d6d0e4012665e5e58571 Mon Sep 17 00:00:00 2001 From: YunaiV Date: Sun, 2 Nov 2025 16:01:44 +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=E7=9A=84=20promotion-combination=20?= =?UTF-8?q?=E7=9A=84=E4=BB=A3=E7=A0=81=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/combination-showcase.vue | 177 -------- .../components/combination-table-select.vue | 395 ------------------ .../promotion/combination/components/index.ts | 1 + .../combination/components/showcase.vue | 148 +++++++ .../combination/components/table-select.vue | 285 +++++++++++++ .../mobile/promotion-combination/property.vue | 2 +- 6 files changed, 435 insertions(+), 573 deletions(-) delete mode 100644 apps/web-ele/src/views/mall/promotion/combination/components/combination-showcase.vue delete mode 100644 apps/web-ele/src/views/mall/promotion/combination/components/combination-table-select.vue create mode 100644 apps/web-ele/src/views/mall/promotion/combination/components/index.ts create mode 100644 apps/web-ele/src/views/mall/promotion/combination/components/showcase.vue create mode 100644 apps/web-ele/src/views/mall/promotion/combination/components/table-select.vue diff --git a/apps/web-ele/src/views/mall/promotion/combination/components/combination-showcase.vue b/apps/web-ele/src/views/mall/promotion/combination/components/combination-showcase.vue deleted file mode 100644 index 2a3d74e1d..000000000 --- a/apps/web-ele/src/views/mall/promotion/combination/components/combination-showcase.vue +++ /dev/null @@ -1,177 +0,0 @@ - - - - diff --git a/apps/web-ele/src/views/mall/promotion/combination/components/combination-table-select.vue b/apps/web-ele/src/views/mall/promotion/combination/components/combination-table-select.vue deleted file mode 100644 index fde43f2ec..000000000 --- a/apps/web-ele/src/views/mall/promotion/combination/components/combination-table-select.vue +++ /dev/null @@ -1,395 +0,0 @@ - - - diff --git a/apps/web-ele/src/views/mall/promotion/combination/components/index.ts b/apps/web-ele/src/views/mall/promotion/combination/components/index.ts new file mode 100644 index 000000000..36d56af42 --- /dev/null +++ b/apps/web-ele/src/views/mall/promotion/combination/components/index.ts @@ -0,0 +1 @@ +export { default as CombinationShowcase } from './showcase.vue'; diff --git a/apps/web-ele/src/views/mall/promotion/combination/components/showcase.vue b/apps/web-ele/src/views/mall/promotion/combination/components/showcase.vue new file mode 100644 index 000000000..748db18b8 --- /dev/null +++ b/apps/web-ele/src/views/mall/promotion/combination/components/showcase.vue @@ -0,0 +1,148 @@ + + + + diff --git a/apps/web-ele/src/views/mall/promotion/combination/components/table-select.vue b/apps/web-ele/src/views/mall/promotion/combination/components/table-select.vue new file mode 100644 index 000000000..f36a2b588 --- /dev/null +++ b/apps/web-ele/src/views/mall/promotion/combination/components/table-select.vue @@ -0,0 +1,285 @@ + + + + diff --git a/apps/web-ele/src/views/mall/promotion/components/diy-editor/components/mobile/promotion-combination/property.vue b/apps/web-ele/src/views/mall/promotion/components/diy-editor/components/mobile/promotion-combination/property.vue index fe222be0b..ca3f8b231 100644 --- a/apps/web-ele/src/views/mall/promotion/components/diy-editor/components/mobile/promotion-combination/property.vue +++ b/apps/web-ele/src/views/mall/promotion/components/diy-editor/components/mobile/promotion-combination/property.vue @@ -18,7 +18,7 @@ import { } from 'element-plus'; import UploadImg from '#/components/upload/image-upload.vue'; -import CombinationShowcase from '#/views/mall/promotion/combination/components/combination-showcase.vue'; +import { CombinationShowcase } from '#/views/mall/promotion/combination/components'; import { ColorInput } from '#/views/mall/promotion/components'; import ComponentContainerProperty from '../../component-container-property.vue';