fix
parent
b32d56fc97
commit
0a0d207409
|
|
@ -160,7 +160,7 @@ function OrgInfoPage(props) {
|
||||||
label="生产经营单位名称"
|
label="生产经营单位名称"
|
||||||
rules={[{ required: true, message: "请输入生产经营单位名称" }]}
|
rules={[{ required: true, message: "请输入生产经营单位名称" }]}
|
||||||
>
|
>
|
||||||
<Input placeholder="请输入生产经营单位名称" allowClear />
|
<Input placeholder="请输入生产经营单位名称" allowClear maxLength={200} />
|
||||||
</Form.Item>
|
</Form.Item>
|
||||||
</Col>
|
</Col>
|
||||||
<Col span={12}>
|
<Col span={12}>
|
||||||
|
|
@ -169,7 +169,7 @@ function OrgInfoPage(props) {
|
||||||
label="统一社会信用代码"
|
label="统一社会信用代码"
|
||||||
rules={[creditCodeRule(true)]}
|
rules={[creditCodeRule(true)]}
|
||||||
>
|
>
|
||||||
<Input placeholder="请输入统一社会信用代码" allowClear />
|
<Input placeholder="请输入统一社会信用代码" allowClear maxLength={18} />
|
||||||
</Form.Item>
|
</Form.Item>
|
||||||
</Col>
|
</Col>
|
||||||
<Col span={12}>
|
<Col span={12}>
|
||||||
|
|
@ -180,7 +180,7 @@ function OrgInfoPage(props) {
|
||||||
{ required: true, message: "请输入安全生产监管行业类别" },
|
{ required: true, message: "请输入安全生产监管行业类别" },
|
||||||
]}
|
]}
|
||||||
>
|
>
|
||||||
<Input placeholder="请输入安全生产监管行业类别" allowClear />
|
<Input placeholder="请输入安全生产监管行业类别" allowClear maxLength={100} />
|
||||||
</Form.Item>
|
</Form.Item>
|
||||||
</Col>
|
</Col>
|
||||||
<Col span={12}>
|
<Col span={12}>
|
||||||
|
|
@ -206,12 +206,12 @@ function OrgInfoPage(props) {
|
||||||
label="所属镇、街道"
|
label="所属镇、街道"
|
||||||
rules={[{ required: true, message: "请输入所属镇街道" }]}
|
rules={[{ required: true, message: "请输入所属镇街道" }]}
|
||||||
>
|
>
|
||||||
<Input placeholder="请输入所属镇街道" allowClear />
|
<Input placeholder="请输入所属镇街道" allowClear maxLength={100} />
|
||||||
</Form.Item>
|
</Form.Item>
|
||||||
</Col>
|
</Col>
|
||||||
<Col span={12}>
|
<Col span={12}>
|
||||||
<Form.Item name="villageCommunity" label="属村(社区)">
|
<Form.Item name="villageCommunity" label="属村(社区)">
|
||||||
<Input placeholder="请输入属村(社区)" allowClear />
|
<Input placeholder="请输入属村(社区)" allowClear maxLength={100} />
|
||||||
</Form.Item>
|
</Form.Item>
|
||||||
</Col>
|
</Col>
|
||||||
<Col span={12}>
|
<Col span={12}>
|
||||||
|
|
@ -258,7 +258,7 @@ function OrgInfoPage(props) {
|
||||||
label="注册地址"
|
label="注册地址"
|
||||||
rules={[{ required: true, message: "请输入注册地址" }]}
|
rules={[{ required: true, message: "请输入注册地址" }]}
|
||||||
>
|
>
|
||||||
<Input.TextArea rows={3} placeholder="请输入注册地址" />
|
<Input.TextArea rows={3} placeholder="请输入注册地址" maxLength={200} />
|
||||||
</Form.Item>
|
</Form.Item>
|
||||||
</Col>
|
</Col>
|
||||||
<Col span={12}>
|
<Col span={12}>
|
||||||
|
|
@ -267,12 +267,12 @@ function OrgInfoPage(props) {
|
||||||
label="经营地址"
|
label="经营地址"
|
||||||
rules={[{ required: true, message: "请输入经营地址" }]}
|
rules={[{ required: true, message: "请输入经营地址" }]}
|
||||||
>
|
>
|
||||||
<Input.TextArea rows={3} placeholder="请输入经营地址" />
|
<Input.TextArea rows={3} placeholder="请输入经营地址" maxLength={200} />
|
||||||
</Form.Item>
|
</Form.Item>
|
||||||
</Col>
|
</Col>
|
||||||
<Col span={12}>
|
<Col span={12}>
|
||||||
<Form.Item name="ownershipTypeName" label="归属类型">
|
<Form.Item name="ownershipTypeName" label="归属类型">
|
||||||
<Input placeholder="请输入归属类型" allowClear />
|
<Input placeholder="请输入归属类型" allowClear maxLength={50} />
|
||||||
</Form.Item>
|
</Form.Item>
|
||||||
</Col>
|
</Col>
|
||||||
<Col span={12}>
|
<Col span={12}>
|
||||||
|
|
@ -280,7 +280,7 @@ function OrgInfoPage(props) {
|
||||||
name="economyIndustryCode"
|
name="economyIndustryCode"
|
||||||
label="国民经济行业分类(GB/T4754-2017)"
|
label="国民经济行业分类(GB/T4754-2017)"
|
||||||
>
|
>
|
||||||
<Input placeholder="请输入国民经济行业分类" allowClear />
|
<Input placeholder="请输入国民经济行业分类" allowClear maxLength={50} />
|
||||||
</Form.Item>
|
</Form.Item>
|
||||||
</Col>
|
</Col>
|
||||||
<Col span={12}>
|
<Col span={12}>
|
||||||
|
|
@ -289,7 +289,7 @@ function OrgInfoPage(props) {
|
||||||
label="法定代表人"
|
label="法定代表人"
|
||||||
rules={[{ required: true, message: "请输入法定代表人" }]}
|
rules={[{ required: true, message: "请输入法定代表人" }]}
|
||||||
>
|
>
|
||||||
<Input placeholder="请输入法定代表人" allowClear />
|
<Input placeholder="请输入法定代表人" allowClear maxLength={50} />
|
||||||
</Form.Item>
|
</Form.Item>
|
||||||
</Col>
|
</Col>
|
||||||
<Col span={12}>
|
<Col span={12}>
|
||||||
|
|
@ -301,7 +301,7 @@ function OrgInfoPage(props) {
|
||||||
typeof value === "string" ? value.trim() : value
|
typeof value === "string" ? value.trim() : value
|
||||||
}
|
}
|
||||||
>
|
>
|
||||||
<Input placeholder="请输入法定代表人联系电话" allowClear />
|
<Input placeholder="请输入法定代表人联系电话" allowClear maxLength={11} />
|
||||||
</Form.Item>
|
</Form.Item>
|
||||||
</Col>
|
</Col>
|
||||||
<Col span={12}>
|
<Col span={12}>
|
||||||
|
|
@ -310,7 +310,7 @@ function OrgInfoPage(props) {
|
||||||
label="主要负责人"
|
label="主要负责人"
|
||||||
rules={[{ required: true, message: "请输入主要负责人" }]}
|
rules={[{ required: true, message: "请输入主要负责人" }]}
|
||||||
>
|
>
|
||||||
<Input placeholder="请输入主要负责人" allowClear />
|
<Input placeholder="请输入主要负责人" allowClear maxLength={50} />
|
||||||
</Form.Item>
|
</Form.Item>
|
||||||
</Col>
|
</Col>
|
||||||
<Col span={12}>
|
<Col span={12}>
|
||||||
|
|
@ -322,12 +322,12 @@ function OrgInfoPage(props) {
|
||||||
typeof value === "string" ? value.trim() : value
|
typeof value === "string" ? value.trim() : value
|
||||||
}
|
}
|
||||||
>
|
>
|
||||||
<Input placeholder="请输入主要负责人联系电话" allowClear />
|
<Input placeholder="请输入主要负责人联系电话" allowClear maxLength={11} />
|
||||||
</Form.Item>
|
</Form.Item>
|
||||||
</Col>
|
</Col>
|
||||||
<Col span={12}>
|
<Col span={12}>
|
||||||
<Form.Item name="safetyDeptManager" label="安全管理部门负责人">
|
<Form.Item name="safetyDeptManager" label="安全管理部门负责人">
|
||||||
<Input placeholder="请输入安全管理部门负责人" allowClear />
|
<Input placeholder="请输入安全管理部门负责人" allowClear maxLength={50} />
|
||||||
</Form.Item>
|
</Form.Item>
|
||||||
</Col>
|
</Col>
|
||||||
<Col span={12}>
|
<Col span={12}>
|
||||||
|
|
@ -342,6 +342,7 @@ function OrgInfoPage(props) {
|
||||||
<Input
|
<Input
|
||||||
placeholder="请输入安全管理部门负责人联系电话"
|
placeholder="请输入安全管理部门负责人联系电话"
|
||||||
allowClear
|
allowClear
|
||||||
|
maxLength={11}
|
||||||
/>
|
/>
|
||||||
</Form.Item>
|
</Form.Item>
|
||||||
</Col>
|
</Col>
|
||||||
|
|
@ -355,7 +356,7 @@ function OrgInfoPage(props) {
|
||||||
typeof value === "string" ? value.trim() : value
|
typeof value === "string" ? value.trim() : value
|
||||||
}
|
}
|
||||||
>
|
>
|
||||||
<Input placeholder="请输入主管安全副总联系电话" allowClear />
|
<Input placeholder="请输入主管安全副总联系电话" allowClear maxLength={11} />
|
||||||
</Form.Item>
|
</Form.Item>
|
||||||
</Col>
|
</Col>
|
||||||
<Col span={12}>
|
<Col span={12}>
|
||||||
|
|
@ -368,7 +369,7 @@ function OrgInfoPage(props) {
|
||||||
</Col>
|
</Col>
|
||||||
<Col span={12}>
|
<Col span={12}>
|
||||||
<Form.Item name="businessStatusName" label="企业经营状态">
|
<Form.Item name="businessStatusName" label="企业经营状态">
|
||||||
<Input placeholder="请输入企业经营状态" allowClear />
|
<Input placeholder="请输入企业经营状态" allowClear maxLength={50} />
|
||||||
</Form.Item>
|
</Form.Item>
|
||||||
</Col>
|
</Col>
|
||||||
<Col span={12}>
|
<Col span={12}>
|
||||||
|
|
@ -380,7 +381,7 @@ function OrgInfoPage(props) {
|
||||||
typeof value === "string" ? value.trim() : value
|
typeof value === "string" ? value.trim() : value
|
||||||
}
|
}
|
||||||
>
|
>
|
||||||
<Input placeholder="请输入信息公开网址" allowClear />
|
<Input placeholder="请输入信息公开网址" allowClear maxLength={200} />
|
||||||
</Form.Item>
|
</Form.Item>
|
||||||
</Col>
|
</Col>
|
||||||
<Col span={12}>
|
<Col span={12}>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue