tangjie 2026-07-10 17:11:35 +08:00
parent 5bb72ed95a
commit 4af76a4bc2
2 changed files with 18 additions and 6 deletions

View File

@ -12,9 +12,9 @@ export const CHONGQING_DISTRICTS = [
/** 企业状态 */ /** 企业状态 */
export const ENTERPRISE_STATUS_OPTIONS = [ export const ENTERPRISE_STATUS_OPTIONS = [
{ label: "正常", value: "正常" }, { label: "正常", value: 1 },
{ label: "停业", value: "停业" }, { label: "停业", value: 2 },
{ label: "注销", value: "注销" }, { label: "注销", value: 3 },
]; ];
/** 企业规模 */ /** 企业规模 */

View File

@ -213,7 +213,7 @@ const RegisterMore = (props) => {
</Col> </Col>
<Col span={12}> <Col span={12}>
<Form.Item <Form.Item
name="districtName" name="districtCode"
label="属地" label="属地"
rules={[{ required: true, message: "请选择属地" }]} rules={[{ required: true, message: "请选择属地" }]}
> >
@ -221,8 +221,12 @@ const RegisterMore = (props) => {
options={CHONGQING_DISTRICTS} options={CHONGQING_DISTRICTS}
placeholder="请选择属地" placeholder="请选择属地"
allowClear allowClear
onChange={(value, option) => {
form.setFieldValue("districtName", option?.label || "");
}}
/> />
</Form.Item> </Form.Item>
<Form.Item name="districtName" noStyle />
</Col> </Col>
<Col span={12}> <Col span={12}>
<Form.Item <Form.Item
@ -491,22 +495,30 @@ const RegisterMore = (props) => {
</Form.Item> </Form.Item>
</Col> </Col>
<Col span={12}> <Col span={12}>
<Form.Item name="enterpriseStatusName" label="企业状态"> <Form.Item name="enterpriseStatusCode" label="企业状态">
<Select <Select
options={ENTERPRISE_STATUS_OPTIONS} options={ENTERPRISE_STATUS_OPTIONS}
placeholder="请选择企业状态" placeholder="请选择企业状态"
allowClear allowClear
onChange={(value, option) => {
form.setFieldValue("enterpriseStatusName", option?.label || "");
}}
/> />
</Form.Item> </Form.Item>
<Form.Item name="enterpriseStatusName" noStyle />
</Col> </Col>
<Col span={12}> <Col span={12}>
<Form.Item name="enterpriseScaleName" label="企业规模"> <Form.Item name="enterpriseScaleCode" label="企业规模">
<Select <Select
options={ENTERPRISE_SCALE_OPTIONS} options={ENTERPRISE_SCALE_OPTIONS}
placeholder="请选择企业规模" placeholder="请选择企业规模"
allowClear allowClear
onChange={(value, option) => {
form.setFieldValue("enterpriseScaleName", option?.label || "");
}}
/> />
</Form.Item> </Form.Item>
<Form.Item name="enterpriseScaleName" noStyle />
</Col> </Col>
<Col span={12}> <Col span={12}>
<Form.Item name="filingTypeCode" label="备案类型"> <Form.Item name="filingTypeCode" label="备案类型">