新增待办信息

This commit is contained in:
2025-12-31 23:30:34 +08:00
parent a2040e7d9f
commit ab260800d4
7 changed files with 70 additions and 29 deletions

View File

@@ -60,21 +60,15 @@
colProps: { md: 24, lg: 24 },
},
{
label: t('待办状态'),
label: t('待办描述'),
field: 'extra',
component: 'Input',
componentProps: {
maxlength: 8,
},
required: true,
colProps: { md: 24, lg: 24 },
},
{
label: t('待办意见'),
field: 'extraDesc',
component: 'InputTextArea',
required: true,
colProps: { md: 24, lg: 24 },
},
{
label: t('是否关闭'),
field: 'clickClose',
@@ -95,13 +89,13 @@
},
required: true,
},
{
label: t('内容信息'),
field: 'description',
component: 'InputTextArea',
required: true,
colProps: { md: 24, lg: 24 },
},
{
label: t('待办意见'),
field: 'extraDesc',
component: 'InputTextArea',
required: true,
colProps: { md: 24, lg: 24 },
},
];
const [registerForm, { resetFields, setFieldsValue, validate }] = useForm<BizListItem>({

View File

@@ -74,7 +74,7 @@
component: 'Input',
},
{
label: t('待办状态'),
label: t('待办描述'),
field: 'extra',
component: 'Input',
},
@@ -179,7 +179,7 @@
dictType: 'is_open',
},
{
title: t('待办状态'),
title: t('待办描述'),
dataIndex: 'extra',
key: 'a.extra',
sorter: true,
@@ -226,6 +226,7 @@
return {
...params,
type : '3',
ustatus: '1',
loginUser : userinfo.value.loginCode ,
};
},