This commit is contained in:
FLL
2025-07-19 14:02:58 +08:00
parent 5f19bb22a8
commit e10f22a4d0
10 changed files with 129 additions and 136 deletions

View File

@@ -93,80 +93,17 @@ export const modalSchema: FormSchemaGetter = () => [
triggerFields: [''],
},
},
{
label: '房屋收费id',
fieldName: 'houseChargeId',
component: 'Input',
rules: 'required',
},
{
label: '费用项目id',
fieldName: 'itemId',
component: 'Input',
rules: 'required',
},
{
label: '缴费开始时间',
fieldName: 'startTime',
component: 'DatePicker',
componentProps: {
showTime: true,
format: 'YYYY-MM-DD HH:mm:ss',
valueFormat: 'YYYY-MM-DD HH:mm:ss',
},
rules: 'required',
},
{
label: '缴费结束时间',
fieldName: 'endTime',
component: 'DatePicker',
componentProps: {
showTime: true,
format: 'YYYY-MM-DD HH:mm:ss',
valueFormat: 'YYYY-MM-DD HH:mm:ss',
},
rules: 'required',
},
{
label: '实付金额',
fieldName: 'receivedAmount',
component: 'Input',
},
{
label: '应收金额',
fieldName: 'receivableAmount',
component: 'Input',
rules: 'required',
},
{
label: '缴费时间',
fieldName: 'payTime',
component: 'DatePicker',
componentProps: {
showTime: true,
format: 'YYYY-MM-DD HH:mm:ss',
valueFormat: 'YYYY-MM-DD HH:mm:ss',
},
rules: 'required',
},
{
label: '审核状态',
fieldName: 'state',
component: 'Select',
component: 'RadioGroup',
componentProps: {
// 可选从DictEnum中获取 DictEnum.COST_REVIEW_STATUS 便于维护
options: getDictOptions('cost_review_status'),
options: [
{ label: '已审核', value: '1' },
{ label: '已驳回', value: '2' },
],
// options: getDictOptions('cost_review_status'),
},
rules: 'selectRequired',
},
{
label: '备注',
fieldName: 'remark',
component: 'Textarea',
},
{
label: '搜索值',
fieldName: 'searchValue',
component: 'Input',
rules: 'required',
},
];