修改境内企业身份证号码类型
This commit is contained in:
@ -89,7 +89,7 @@ const DomesticForm: React.FC<DomesticFormProps> = ({
|
||||
<Form.Item
|
||||
name={['coscoSupplierBase', 'licenceDate']}
|
||||
label="营业执照有效期"
|
||||
rules={[{ required: false, message: '请选择营业执照有效期' }]}
|
||||
rules={[{ required: true, message: '请选择营业执照有效期' }]}
|
||||
>
|
||||
<DatePicker placeholder="请选择日期" style={{ width: '100%' }} format="YYYY-MM-DD" />
|
||||
</Form.Item>
|
||||
@ -103,6 +103,15 @@ const DomesticForm: React.FC<DomesticFormProps> = ({
|
||||
<Input placeholder="请输入企业名称" />
|
||||
</Form.Item>
|
||||
</Col>
|
||||
<Col span={8}>
|
||||
<Form.Item
|
||||
name={['coscoSupplierBase', 'nameEn']}
|
||||
label="英文名"
|
||||
rules={[{ required: false, message: '请输入英文名' }]}
|
||||
>
|
||||
<Input placeholder="请输入英文名" />
|
||||
</Form.Item>
|
||||
</Col>
|
||||
<Col span={8}>
|
||||
<Form.Item
|
||||
name="socialCreditCode"
|
||||
@ -124,6 +133,32 @@ const DomesticForm: React.FC<DomesticFormProps> = ({
|
||||
<Input placeholder="张三" />
|
||||
</Form.Item>
|
||||
</Col>
|
||||
<Col span={8}>
|
||||
<Form.Item label="证件号码" required>
|
||||
<Space.Compact size="large">
|
||||
<Form.Item
|
||||
name="contactsType"
|
||||
noStyle
|
||||
rules={[{ required: true, message: '请选择联系人证件类型' }]}
|
||||
>
|
||||
<Select placeholder="请选择类型">
|
||||
{contactsTypeOptions.map((item) => (
|
||||
<Option key={item.code} value={item.code}>
|
||||
{item.dicName}
|
||||
</Option>
|
||||
))}
|
||||
</Select>
|
||||
</Form.Item>
|
||||
<Form.Item
|
||||
name="idCard"
|
||||
noStyle
|
||||
rules={[{ required: true, message: '请填写联系人正确的身份证号' }]}
|
||||
>
|
||||
<Input placeholder="请填写联系人正确的身份证号" />
|
||||
</Form.Item>
|
||||
</Space.Compact>
|
||||
</Form.Item>
|
||||
</Col>
|
||||
<Col span={8}>
|
||||
<Form.Item
|
||||
name="registeredCapital"
|
||||
@ -177,7 +212,7 @@ const DomesticForm: React.FC<DomesticFormProps> = ({
|
||||
</Form.Item>
|
||||
</Col>
|
||||
<Col span={8}>
|
||||
<Form.Item name="officeAddress" label="办公地址">
|
||||
<Form.Item name="officeAddress" label="办公地址" rules={[{ required: true, message: '请输入办公地址' }]}>
|
||||
<Input
|
||||
prefix={<EnvironmentOutlined />}
|
||||
placeholder="请具体注明省、市、区、路、门牌号"
|
||||
@ -252,32 +287,6 @@ const DomesticForm: React.FC<DomesticFormProps> = ({
|
||||
</Select>
|
||||
</Form.Item>
|
||||
</Col> */}
|
||||
<Col span={8}>
|
||||
<Form.Item label="联系人证件号码" required>
|
||||
<Space.Compact size="large">
|
||||
<Form.Item
|
||||
name="contactIdType"
|
||||
noStyle
|
||||
rules={[{ required: true, message: '请选择联系人证件类型' }]}
|
||||
>
|
||||
<Select placeholder="请选择类型">
|
||||
{contactsTypeOptions.map((item) => (
|
||||
<Option key={item.code} value={item.code}>
|
||||
{item.dicName}
|
||||
</Option>
|
||||
))}
|
||||
</Select>
|
||||
</Form.Item>
|
||||
<Form.Item
|
||||
name="contactIdNumber"
|
||||
noStyle
|
||||
rules={[{ required: true, message: '请填写联系人正确的身份证号' }]}
|
||||
>
|
||||
<Input placeholder="请填写联系人正确的身份证号" />
|
||||
</Form.Item>
|
||||
</Space.Compact>
|
||||
</Form.Item>
|
||||
</Col>
|
||||
<Col span={8}>
|
||||
<Form.Item
|
||||
name="contactEmail"
|
||||
|
Reference in New Issue
Block a user