审批记录下统一社会信用代码/税号
This commit is contained in:
@ -273,7 +273,7 @@ const CreateModal: React.FC<{ visible: boolean; onCancel: () => void; }> = ({ vi
|
||||
name="deptId"
|
||||
rules={[{ required: true, message: '请选择准入部门' }]}
|
||||
>
|
||||
<AccessDepartmentSelect />
|
||||
<AccessDepartmentSelect style={{width: '100%'}} />
|
||||
</Form.Item>
|
||||
|
||||
<Form.Item
|
||||
@ -397,11 +397,8 @@ const CreateModal: React.FC<{ visible: boolean; onCancel: () => void; }> = ({ vi
|
||||
label="评审分工"
|
||||
name="division"
|
||||
rules={[
|
||||
{
|
||||
{
|
||||
required: true,
|
||||
message: '请设置评审分工',
|
||||
},
|
||||
{
|
||||
validator: (_, value) => {
|
||||
if (!value || !Array.isArray(value) || value.length === 0) {
|
||||
return Promise.reject(new Error('请设置评审分工'));
|
||||
|
@ -99,7 +99,7 @@ const ViewModal: React.FC<{
|
||||
)
|
||||
}
|
||||
},
|
||||
{ title: '企业类型', dataIndex: '', align: 'center' },
|
||||
{ title: '统一社会信用代码/税号', dataIndex: 'unifiedSocialCreditCode', align: 'center' },
|
||||
]
|
||||
return (
|
||||
<Modal
|
||||
|
Reference in New Issue
Block a user