feat:【antd】【ele】【member 会员】level 迁移 ele

This commit is contained in:
YunaiV
2025-10-07 10:30:24 +08:00
parent 2f6e7ced5e
commit ba47b627c8
8 changed files with 68 additions and 19 deletions

View File

@@ -11,6 +11,7 @@ export namespace MemberLevelApi {
icon: string;
bgUrl: string;
status: number;
createTime?: Date;
}
}

View File

@@ -71,7 +71,7 @@ export function useFormSchema(): VbenFormSchema[] {
},
{
fieldName: 'backgroundUrl',
label: '背景图',
label: '等级背景图',
component: 'ImageUpload',
},
{

View File

@@ -26,7 +26,7 @@ const [Form, formApi] = useVbenForm({
componentProps: {
class: 'w-full',
},
formItemClass: 'col-span-1',
formItemClass: 'col-span-2',
labelWidth: 110,
},
layout: 'horizontal',

View File

@@ -11,6 +11,7 @@ export namespace MemberLevelApi {
icon: string;
bgUrl: string;
status: number;
createTime?: Date;
}
}

View File

@@ -100,15 +100,16 @@ const [Grid, gridApi] = useVbenVxeGrid({
:actions="[
{
label: $t('common.edit'),
type: 'link',
type: 'primary',
link: true,
icon: ACTION_ICON.EDIT,
auth: ['member:group:update'],
onClick: handleEdit.bind(null, row),
},
{
label: $t('common.delete'),
type: 'link',
danger: true,
type: 'danger',
link: true,
icon: ACTION_ICON.DELETE,
auth: ['member:group:delete'],
popConfirm: {

View File

@@ -5,31 +5,40 @@ import { CommonStatusEnum, DICT_TYPE } from '@vben/constants';
import { getDictOptions } from '@vben/hooks';
import { z } from '#/adapter/form';
import { getRangePickerDefaultProps } from '#/utils';
/** 新增/修改的表单 */
export function useFormSchema(): VbenFormSchema[] {
return [
{
component: 'Input',
fieldName: 'id',
component: 'Input',
dependencies: {
triggerFields: [''],
show: () => false,
},
},
{
component: 'Input',
fieldName: 'name',
label: '等级名称',
component: 'Input',
componentProps: {
placeholder: '请输入等级名称',
},
rules: 'required',
},
{
component: 'InputNumber',
fieldName: 'level',
label: '等级',
component: 'InputNumber',
componentProps: {
min: 0,
precision: 0,
placeholder: '请输入等级',
controlsPosition: 'right',
class: '!w-full',
},
rules: 'required',
},
{
fieldName: 'experience',
@@ -38,7 +47,11 @@ export function useFormSchema(): VbenFormSchema[] {
componentProps: {
min: 0,
precision: 0,
placeholder: '请输入升级经验',
controlsPosition: 'right',
class: '!w-full',
},
rules: 'required',
},
{
fieldName: 'discountPercent',
@@ -48,17 +61,21 @@ export function useFormSchema(): VbenFormSchema[] {
min: 0,
max: 100,
precision: 0,
placeholder: '请输入享受折扣',
controlsPosition: 'right',
class: '!w-full',
},
rules: 'required',
},
{
component: 'ImageUpload',
fieldName: 'icon',
label: '等级图标',
component: 'ImageUpload',
},
{
component: 'ImageUpload',
fieldName: 'backgroundUrl',
label: '等级背景图',
component: 'ImageUpload',
},
{
fieldName: 'status',
@@ -81,16 +98,30 @@ export function useGridFormSchema(): VbenFormSchema[] {
fieldName: 'name',
label: '等级名称',
component: 'Input',
componentProps: {
placeholder: '请输入等级名称',
clearable: true,
},
},
{
fieldName: 'status',
label: '状态',
component: 'Select',
componentProps: {
placeholder: '请选择状态',
clearable: true,
options: getDictOptions(DICT_TYPE.COMMON_STATUS, 'number'),
},
},
{
fieldName: 'createTime',
label: '创建时间',
component: 'RangePicker',
componentProps: {
...getRangePickerDefaultProps(),
allowClear: true,
},
},
];
}
@@ -99,11 +130,13 @@ export function useGridColumns(): VxeTableGridOptions['columns'] {
return [
{
field: 'id',
title: '编号',
title: '等级编号',
minWidth: 80,
},
{
field: 'icon',
title: '等级图标',
minWidth: 100,
cellRender: {
name: 'CellImage',
},
@@ -111,6 +144,7 @@ export function useGridColumns(): VxeTableGridOptions['columns'] {
{
field: 'backgroundUrl',
title: '等级背景图',
minWidth: 120,
cellRender: {
name: 'CellImage',
},
@@ -118,22 +152,27 @@ export function useGridColumns(): VxeTableGridOptions['columns'] {
{
field: 'name',
title: '等级名称',
minWidth: 120,
},
{
field: 'level',
title: '等级',
minWidth: 80,
},
{
field: 'experience',
title: '升级经验',
minWidth: 100,
},
{
field: 'discountPercent',
title: '享受折扣(%)',
minWidth: 120,
},
{
field: 'status',
title: '状态',
minWidth: 80,
cellRender: {
name: 'CellDict',
props: { type: DICT_TYPE.COMMON_STATUS },
@@ -142,11 +181,12 @@ export function useGridColumns(): VxeTableGridOptions['columns'] {
{
field: 'createTime',
title: '创建时间',
minWidth: 180,
formatter: 'formatDateTime',
},
{
title: '操作',
width: 130,
width: 180,
fixed: 'right',
slots: { default: 'actions' },
},

View File

@@ -2,7 +2,7 @@
import type { VxeTableGridOptions } from '#/adapter/vxe-table';
import type { MemberLevelApi } from '#/api/member/level';
import { Page, useVbenModal } from '@vben/common-ui';
import { DocAlert, Page, useVbenModal } from '@vben/common-ui';
import { ElLoading, ElMessage } from 'element-plus';
@@ -19,7 +19,7 @@ const [FormModal, formModalApi] = useVbenModal({
});
/** 刷新表格 */
function onRefresh() {
function handleRefresh() {
gridApi.query();
}
@@ -41,7 +41,7 @@ async function handleDelete(row: MemberLevelApi.Level) {
try {
await deleteLevel(row.id as number);
ElMessage.success($t('ui.actionMessage.deleteSuccess', [row.name]));
onRefresh();
handleRefresh();
} finally {
loadingInstance.close();
}
@@ -60,7 +60,7 @@ const [Grid, gridApi] = useVbenVxeGrid({
},
proxyConfig: {
ajax: {
query: async (_params, formValues) => {
query: async (_, formValues) => {
return await getLevelList({
...formValues,
});
@@ -69,6 +69,7 @@ const [Grid, gridApi] = useVbenVxeGrid({
},
rowConfig: {
keyField: 'id',
isHover: true,
},
toolbarConfig: {
refresh: true,
@@ -80,7 +81,12 @@ const [Grid, gridApi] = useVbenVxeGrid({
<template>
<Page auto-content-height>
<FormModal @success="onRefresh" />
<DocAlert
title="会员等级、积分、签到"
url="https://doc.iocoder.cn/member/level/"
/>
<FormModal @success="handleRefresh" />
<Grid table-title="等级列表">
<template #toolbar-tools>
<TableAction

View File

@@ -27,7 +27,7 @@ const [Form, formApi] = useVbenForm({
class: 'w-full',
},
formItemClass: 'col-span-2',
labelWidth: 80,
labelWidth: 110,
},
layout: 'horizontal',
schema: useFormSchema(),
@@ -76,7 +76,7 @@ const [Modal, modalApi] = useVbenModal({
</script>
<template>
<Modal class="w-2/5" :title="getTitle">
<Modal :title="getTitle" class="w-1/2">
<Form class="mx-4" />
</Modal>
</template>