fix:【system 系统管理】ele、antd 的搜索清理属性不对的问题

This commit is contained in:
YunaiV
2025-09-06 10:24:59 +08:00
parent fcaa81ff3b
commit 0539aece1b
90 changed files with 259 additions and 259 deletions

View File

@@ -32,7 +32,7 @@ export function useGridFormSchema(): VbenFormSchema[] {
label: '通知类型',
component: 'Select',
componentProps: {
allowClear: true,
clearable: true,
options: getDictOptions(DICT_TYPE.PAY_NOTIFY_TYPE, 'number'),
},
},
@@ -46,7 +46,7 @@ export function useGridFormSchema(): VbenFormSchema[] {
label: '通知状态',
component: 'Select',
componentProps: {
allowClear: true,
clearable: true,
options: getDictOptions(DICT_TYPE.PAY_NOTIFY_STATUS, 'number'),
},
},
@@ -61,7 +61,7 @@ export function useGridFormSchema(): VbenFormSchema[] {
component: 'RangePicker',
componentProps: {
...getRangePickerDefaultProps(),
allowClear: true,
clearable: true,
},
},
];

View File

@@ -39,7 +39,7 @@ export function useGridFormSchema(): VbenFormSchema[] {
label: '退款渠道',
component: 'Select',
componentProps: {
allowClear: true,
clearable: true,
options: getDictOptions(DICT_TYPE.PAY_CHANNEL_CODE, 'string'),
},
},
@@ -68,7 +68,7 @@ export function useGridFormSchema(): VbenFormSchema[] {
label: '退款状态',
component: 'Select',
componentProps: {
allowClear: true,
clearable: true,
options: getDictOptions(DICT_TYPE.PAY_REFUND_STATUS, 'number'),
},
},
@@ -78,7 +78,7 @@ export function useGridFormSchema(): VbenFormSchema[] {
component: 'RangePicker',
componentProps: {
...getRangePickerDefaultProps(),
allowClear: true,
clearable: true,
},
},
];

View File

@@ -22,7 +22,7 @@ export function useGridFormSchema(): VbenFormSchema[] {
label: '转账单号',
component: 'Input',
componentProps: {
allowClear: true,
clearable: true,
placeholder: '请输入转账单号',
},
},
@@ -32,7 +32,7 @@ export function useGridFormSchema(): VbenFormSchema[] {
component: 'Select',
componentProps: {
options: getDictOptions(DICT_TYPE.PAY_CHANNEL_CODE),
allowClear: true,
clearable: true,
placeholder: '请选择支付渠道',
},
},
@@ -41,7 +41,7 @@ export function useGridFormSchema(): VbenFormSchema[] {
label: '商户单号',
component: 'Input',
componentProps: {
allowClear: true,
clearable: true,
placeholder: '请输入商户单号',
},
},
@@ -51,7 +51,7 @@ export function useGridFormSchema(): VbenFormSchema[] {
component: 'Select',
componentProps: {
options: getDictOptions(DICT_TYPE.PAY_TRANSFER_TYPE),
allowClear: true,
clearable: true,
placeholder: '请选择类型',
},
},
@@ -61,7 +61,7 @@ export function useGridFormSchema(): VbenFormSchema[] {
component: 'Select',
componentProps: {
options: getDictOptions(DICT_TYPE.PAY_TRANSFER_STATUS),
allowClear: true,
clearable: true,
placeholder: '请选择转账状态',
},
},
@@ -70,7 +70,7 @@ export function useGridFormSchema(): VbenFormSchema[] {
label: '收款人姓名',
component: 'Input',
componentProps: {
allowClear: true,
clearable: true,
placeholder: '请输入收款人姓名',
},
},
@@ -79,7 +79,7 @@ export function useGridFormSchema(): VbenFormSchema[] {
label: '收款人账号',
component: 'Input',
componentProps: {
allowClear: true,
clearable: true,
placeholder: '请输入收款人账号',
},
},
@@ -88,7 +88,7 @@ export function useGridFormSchema(): VbenFormSchema[] {
label: '渠道单号',
component: 'Input',
componentProps: {
allowClear: true,
clearable: true,
placeholder: '请输入渠道单号',
},
},
@@ -98,7 +98,7 @@ export function useGridFormSchema(): VbenFormSchema[] {
component: 'RangePicker',
componentProps: {
...getRangePickerDefaultProps(),
allowClear: true,
clearable: true,
},
},
];

View File

@@ -29,7 +29,7 @@ export function useGridFormSchema(): VbenFormSchema[] {
label: '创建时间',
component: 'RangePicker',
componentProps: {
allowClear: true,
clearable: true,
...getRangePickerDefaultProps(),
},
},

View File

@@ -62,7 +62,7 @@ export function useGridFormSchema(): VbenFormSchema[] {
label: '状态',
component: 'Select',
componentProps: {
allowClear: true,
clearable: true,
options: getDictOptions(DICT_TYPE.COMMON_STATUS, 'number'),
},
},
@@ -71,7 +71,7 @@ export function useGridFormSchema(): VbenFormSchema[] {
label: '创建时间',
component: 'RangePicker',
componentProps: {
allowClear: true,
clearable: true,
...getRangePickerDefaultProps(),
},
},