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