import type { VbenFormSchema } from '#/adapter/form'; import type { VxeTableGridOptions } from '#/adapter/vxe-table'; import { h } from 'vue'; import { Tag } from 'ant-design-vue'; import { DICT_TYPE } from '@vben/constants'; import { getDictOptions } from '@vben/hooks'; import { getRangePickerDefaultProps } from '#/utils'; /** 列表的搜索表单 */ export function useGridFormSchema(): VbenFormSchema[] { return [ { fieldName: 'nickname', label: '用户', component: 'Input', componentProps: { placeholder: '请输入用户昵称', allowClear: true, }, }, { fieldName: 'bizType', label: '业务类型', component: 'Select', componentProps: { placeholder: '请选择业务类型', allowClear: true, options: getDictOptions(DICT_TYPE.MEMBER_POINT_BIZ_TYPE, 'number'), }, }, { fieldName: 'title', label: '积分标题', component: 'Input', componentProps: { placeholder: '请输入积分标题', allowClear: true, }, }, { fieldName: 'createDate', label: '获得时间', component: 'RangePicker', componentProps: { ...getRangePickerDefaultProps(), allowClear: true, }, }, ]; } /** 列表的字段 */ export function useGridColumns(): VxeTableGridOptions['columns'] { return [ { field: 'id', title: '编号', minWidth: 100, }, { field: 'createTime', title: '获得时间', minWidth: 180, formatter: 'formatDateTime', }, { field: 'nickname', title: '用户', minWidth: 150, }, { field: 'point', title: '获得积分', minWidth: 120, slots: { default: ({ row }) => { return h( Tag, { color: row.point > 0 ? 'blue' : 'red', }, () => (row.point > 0 ? `+${row.point}` : row.point), ); }, }, }, { field: 'totalPoint', title: '总积分', minWidth: 100, }, { field: 'title', title: '标题', minWidth: 200, }, { field: 'description', title: '描述', minWidth: 200, }, { field: 'bizId', title: '业务编码', minWidth: 120, }, { field: 'bizType', title: '业务类型', minWidth: 120, cellRender: { name: 'CellDict', props: { type: DICT_TYPE.MEMBER_POINT_BIZ_TYPE }, }, }, ]; }