From bd51a311e49e148f5ec1f05ef2efcfb0a5fd7abc Mon Sep 17 00:00:00 2001 From: xingyu4j Date: Fri, 20 Jun 2025 15:13:13 +0800 Subject: [PATCH] feat: mall point --- .../mall/promotion/point/activity/data.ts | 140 ++++++++++++++ .../mall/promotion/point/activity/index.vue | 179 +++++++++++++++--- .../promotion/point/activity/modules/form.vue | 107 +++++++++++ 3 files changed, 401 insertions(+), 25 deletions(-) create mode 100644 apps/web-antd/src/views/mall/promotion/point/activity/data.ts create mode 100644 apps/web-antd/src/views/mall/promotion/point/activity/modules/form.vue diff --git a/apps/web-antd/src/views/mall/promotion/point/activity/data.ts b/apps/web-antd/src/views/mall/promotion/point/activity/data.ts new file mode 100644 index 000000000..4e51fda0c --- /dev/null +++ b/apps/web-antd/src/views/mall/promotion/point/activity/data.ts @@ -0,0 +1,140 @@ +import type { VbenFormSchema } from '#/adapter/form'; +import type { VxeTableGridOptions } from '#/adapter/vxe-table'; + +import { DICT_TYPE } from '#/utils/dict'; + +/** 表单配置 */ +export function useFormSchema(): VbenFormSchema[] { + return [ + { + fieldName: 'id', + component: 'Input', + dependencies: { + triggerFields: [''], + show: () => false, + }, + }, + { + fieldName: 'spuId', + label: '积分商城活动商品', + component: 'Input', + componentProps: { + placeholder: '请选择商品', + }, + rules: 'required', + }, + { + fieldName: 'sort', + label: '排序', + component: 'InputNumber', + componentProps: { + placeholder: '请输入排序', + min: 0, + }, + rules: 'required', + }, + { + fieldName: 'remark', + label: '备注', + component: 'Textarea', + componentProps: { + placeholder: '请输入备注', + rows: 4, + }, + }, + ]; +} + +/** 列表的搜索表单 */ +export function useGridFormSchema(): VbenFormSchema[] { + return [ + { + fieldName: 'status', + label: '活动状态', + component: 'Select', + componentProps: { + placeholder: '请选择活动状态', + clearable: true, + dictType: DICT_TYPE.COMMON_STATUS, + }, + }, + ]; +} + +/** 列表的字段 */ +export function useGridColumns(): VxeTableGridOptions['columns'] { + return [ + { + field: 'id', + title: '活动编号', + minWidth: 80, + }, + { + field: 'picUrl', + title: '商品图片', + minWidth: 80, + cellRender: { + name: 'CellImage', + }, + }, + { + field: 'spuName', + title: '商品标题', + minWidth: 300, + }, + { + field: 'marketPrice', + title: '原价', + minWidth: 100, + formatter: 'formatAmount2', + }, + { + field: 'point', + title: '兑换积分', + minWidth: 100, + }, + { + field: 'price', + title: '兑换金额', + minWidth: 100, + formatter: 'formatAmount2', + }, + { + field: 'status', + title: '活动状态', + width: 100, + cellRender: { + name: 'CellDict', + props: { type: DICT_TYPE.COMMON_STATUS }, + }, + }, + { + field: 'stock', + title: '库存', + width: 80, + }, + { + field: 'totalStock', + title: '总库存', + width: 80, + }, + { + field: 'redeemedQuantity', + title: '已兑换数量', + width: 100, + slots: { default: 'redeemedQuantity' }, + }, + { + field: 'createTime', + title: '创建时间', + width: 180, + formatter: 'formatDateTime', + }, + { + title: '操作', + width: 150, + fixed: 'right', + slots: { default: 'actions' }, + }, + ]; +} diff --git a/apps/web-antd/src/views/mall/promotion/point/activity/index.vue b/apps/web-antd/src/views/mall/promotion/point/activity/index.vue index aa33bc770..7e6c5c4b7 100644 --- a/apps/web-antd/src/views/mall/promotion/point/activity/index.vue +++ b/apps/web-antd/src/views/mall/promotion/point/activity/index.vue @@ -1,32 +1,161 @@ diff --git a/apps/web-antd/src/views/mall/promotion/point/activity/modules/form.vue b/apps/web-antd/src/views/mall/promotion/point/activity/modules/form.vue new file mode 100644 index 000000000..a698f812b --- /dev/null +++ b/apps/web-antd/src/views/mall/promotion/point/activity/modules/form.vue @@ -0,0 +1,107 @@ + + +