fix
parent
5bb72ed95a
commit
4af76a4bc2
|
|
@ -12,9 +12,9 @@ export const CHONGQING_DISTRICTS = [
|
|||
|
||||
/** 企业状态 */
|
||||
export const ENTERPRISE_STATUS_OPTIONS = [
|
||||
{ label: "正常", value: "正常" },
|
||||
{ label: "停业", value: "停业" },
|
||||
{ label: "注销", value: "注销" },
|
||||
{ label: "正常", value: 1 },
|
||||
{ label: "停业", value: 2 },
|
||||
{ label: "注销", value: 3 },
|
||||
];
|
||||
|
||||
/** 企业规模 */
|
||||
|
|
|
|||
|
|
@ -213,7 +213,7 @@ const RegisterMore = (props) => {
|
|||
</Col>
|
||||
<Col span={12}>
|
||||
<Form.Item
|
||||
name="districtName"
|
||||
name="districtCode"
|
||||
label="属地"
|
||||
rules={[{ required: true, message: "请选择属地" }]}
|
||||
>
|
||||
|
|
@ -221,8 +221,12 @@ const RegisterMore = (props) => {
|
|||
options={CHONGQING_DISTRICTS}
|
||||
placeholder="请选择属地"
|
||||
allowClear
|
||||
onChange={(value, option) => {
|
||||
form.setFieldValue("districtName", option?.label || "");
|
||||
}}
|
||||
/>
|
||||
</Form.Item>
|
||||
<Form.Item name="districtName" noStyle />
|
||||
</Col>
|
||||
<Col span={12}>
|
||||
<Form.Item
|
||||
|
|
@ -491,22 +495,30 @@ const RegisterMore = (props) => {
|
|||
</Form.Item>
|
||||
</Col>
|
||||
<Col span={12}>
|
||||
<Form.Item name="enterpriseStatusName" label="企业状态">
|
||||
<Form.Item name="enterpriseStatusCode" label="企业状态">
|
||||
<Select
|
||||
options={ENTERPRISE_STATUS_OPTIONS}
|
||||
placeholder="请选择企业状态"
|
||||
allowClear
|
||||
onChange={(value, option) => {
|
||||
form.setFieldValue("enterpriseStatusName", option?.label || "");
|
||||
}}
|
||||
/>
|
||||
</Form.Item>
|
||||
<Form.Item name="enterpriseStatusName" noStyle />
|
||||
</Col>
|
||||
<Col span={12}>
|
||||
<Form.Item name="enterpriseScaleName" label="企业规模">
|
||||
<Form.Item name="enterpriseScaleCode" label="企业规模">
|
||||
<Select
|
||||
options={ENTERPRISE_SCALE_OPTIONS}
|
||||
placeholder="请选择企业规模"
|
||||
allowClear
|
||||
onChange={(value, option) => {
|
||||
form.setFieldValue("enterpriseScaleName", option?.label || "");
|
||||
}}
|
||||
/>
|
||||
</Form.Item>
|
||||
<Form.Item name="enterpriseScaleName" noStyle />
|
||||
</Col>
|
||||
<Col span={12}>
|
||||
<Form.Item name="filingTypeCode" label="备案类型">
|
||||
|
|
|
|||
Loading…
Reference in New Issue