feat:【mall 商城】快递模版的迁移(antd 30% 列表 ok)

This commit is contained in:
YunaiV
2025-10-11 22:03:40 +08:00
parent 53195748b8
commit 7eeb52c582
3 changed files with 608 additions and 40 deletions

View File

@@ -6,6 +6,80 @@ import { getDictOptions } from '@vben/hooks';
import { z } from '#/adapter/form';
/** 运费设置表格列 */
export function useChargesColumns(): VxeTableGridOptions['columns'] {
return [
{ type: 'seq', title: '序号', width: 50 },
{
field: 'areaIds',
title: '区域',
minWidth: 300,
slots: { default: 'areaIds' },
},
{
field: 'startCount',
title: '首件数',
width: 120,
slots: { default: 'startCount' },
},
{
field: 'startPrice',
title: '运费(元)',
width: 120,
slots: { default: 'startPrice' },
},
{
field: 'extraCount',
title: '续件数',
width: 120,
slots: { default: 'extraCount' },
},
{
field: 'extraPrice',
title: '续费(元)',
width: 120,
slots: { default: 'extraPrice' },
},
{
title: '操作',
width: 80,
fixed: 'right',
slots: { default: 'actions' },
},
];
}
/** 包邮设置表格列 */
export function useFreesColumns(): VxeTableGridOptions['columns'] {
return [
{ type: 'seq', title: '序号', width: 50 },
{
field: 'areaIds',
title: '区域',
minWidth: 300,
slots: { default: 'areaIds' },
},
{
field: 'freeCount',
title: '包邮件数',
width: 120,
slots: { default: 'freeCount' },
},
{
field: 'freePrice',
title: '包邮金额(元)',
width: 120,
slots: { default: 'freePrice' },
},
{
title: '操作',
width: 80,
fixed: 'right',
slots: { default: 'actions' },
},
];
}
/** 新增/修改的表单 */
export function useFormSchema(): VbenFormSchema[] {
return [
@@ -21,6 +95,9 @@ export function useFormSchema(): VbenFormSchema[] {
component: 'Input',
fieldName: 'name',
label: '模板名称',
componentProps: {
placeholder: '请输入模板名称',
},
rules: 'required',
},
{
@@ -39,6 +116,7 @@ export function useFormSchema(): VbenFormSchema[] {
label: '显示顺序',
component: 'InputNumber',
componentProps: {
placeholder: '请输入显示顺序',
min: 0,
},
rules: 'required',
@@ -53,12 +131,17 @@ export function useGridFormSchema(): VbenFormSchema[] {
fieldName: 'name',
label: '模板名称',
component: 'Input',
componentProps: {
placeholder: '请输入模板名称',
allowClear: true,
},
},
{
fieldName: 'chargeMode',
label: '计费方式',
component: 'Select',
componentProps: {
placeholder: '请选择计费方式',
allowClear: true,
options: getDictOptions(DICT_TYPE.EXPRESS_CHARGE_MODE, 'number'),
},
@@ -72,14 +155,17 @@ export function useGridColumns(): VxeTableGridOptions['columns'] {
{
field: 'id',
title: '编号',
minWidth: 100,
},
{
field: 'name',
title: '模板名称',
minWidth: 200,
},
{
field: 'chargeMode',
title: '计费方式',
minWidth: 100,
cellRender: {
name: 'CellDict',
props: { type: DICT_TYPE.EXPRESS_CHARGE_MODE },
@@ -88,10 +174,12 @@ export function useGridColumns(): VxeTableGridOptions['columns'] {
{
field: 'sort',
title: '显示顺序',
minWidth: 100,
},
{
field: 'createTime',
title: '创建时间',
minWidth: 180,
formatter: 'formatDateTime',
},
{