125 lines
2.5 KiB
TypeScript
125 lines
2.5 KiB
TypeScript
import type { VbenFormSchema } from '#/adapter/form';
|
|
import type { VxeTableGridOptions } from '#/adapter/vxe-table';
|
|
|
|
import { DICT_TYPE } from '#/utils';
|
|
|
|
/** 新增/修改的表单 */
|
|
export function useFormSchema(): VbenFormSchema[] {
|
|
return [
|
|
{
|
|
component: 'Input',
|
|
fieldName: 'id',
|
|
dependencies: {
|
|
triggerFields: [''],
|
|
show: () => false,
|
|
},
|
|
},
|
|
{
|
|
component: 'Input',
|
|
fieldName: 'subject',
|
|
label: '提现标题',
|
|
rules: 'required',
|
|
},
|
|
{
|
|
component: 'InputNumber',
|
|
fieldName: 'price',
|
|
label: '提现金额',
|
|
rules: 'required',
|
|
componentProps: {
|
|
min: 1,
|
|
precision: 2,
|
|
step: 0.01,
|
|
},
|
|
},
|
|
{
|
|
component: 'Select',
|
|
fieldName: 'type',
|
|
label: '提现类型',
|
|
rules: 'required',
|
|
componentProps: {
|
|
options: [
|
|
{ label: '支付宝', value: 1 },
|
|
{ label: '微信余额', value: 2 },
|
|
{ label: '钱包余额', value: 3 },
|
|
],
|
|
},
|
|
},
|
|
{
|
|
component: 'Input',
|
|
fieldName: 'userName',
|
|
label: '收款人姓名',
|
|
rules: 'required',
|
|
},
|
|
{
|
|
component: 'Input',
|
|
fieldName: 'userAccount',
|
|
label: '收款人账号',
|
|
rules: 'required',
|
|
},
|
|
];
|
|
}
|
|
|
|
/** 列表的字段 */
|
|
export function useGridColumns(): VxeTableGridOptions['columns'] {
|
|
return [
|
|
{
|
|
field: 'id',
|
|
title: '提现单编号',
|
|
},
|
|
{
|
|
field: 'subject',
|
|
title: '提现标题',
|
|
},
|
|
{
|
|
field: 'type',
|
|
title: '提现类型',
|
|
slots: { default: 'type' },
|
|
},
|
|
{
|
|
field: 'price',
|
|
title: '提现金额',
|
|
formatter: 'formatFenToYuanAmount',
|
|
},
|
|
{
|
|
field: 'userName',
|
|
title: '收款人姓名',
|
|
},
|
|
{
|
|
field: 'userAccount',
|
|
title: '收款人账号',
|
|
},
|
|
{
|
|
field: 'status',
|
|
title: '提现状态',
|
|
slots: { default: 'status' },
|
|
},
|
|
{
|
|
field: 'payTransferId',
|
|
title: '转账单号',
|
|
},
|
|
{
|
|
field: 'transferChannelCode',
|
|
title: '转账渠道',
|
|
cellRender: {
|
|
name: 'CellDict',
|
|
props: { type: DICT_TYPE.PAY_CHANNEL_CODE },
|
|
},
|
|
},
|
|
{
|
|
field: 'transferTime',
|
|
title: '转账时间',
|
|
formatter: 'formatDateTime',
|
|
},
|
|
{
|
|
field: 'transferErrorMsg',
|
|
title: '转账失败原因',
|
|
},
|
|
{
|
|
title: '操作',
|
|
width: 130,
|
|
fixed: 'right',
|
|
slots: { default: 'actions' },
|
|
},
|
|
];
|
|
}
|