fix
parent
d783c82675
commit
892d154b03
|
|
@ -323,6 +323,8 @@ function PersonnelInfoPage(props) {
|
|||
{
|
||||
title: "专业能力",
|
||||
dataIndex: "capabilityAssessment",
|
||||
|
||||
ellipsis: true,
|
||||
render: renderCapabilityList,
|
||||
},
|
||||
{
|
||||
|
|
@ -1227,7 +1229,7 @@ function StaffFormModal({
|
|||
watchedCapList?.[field.name]?.industryCode;
|
||||
const rowOptions = rowIndustryCode
|
||||
? capOptionsCache[rowIndustryCode] || []
|
||||
: CAPABILITY_OPTIONS;
|
||||
: [];
|
||||
return (
|
||||
<Form.Item
|
||||
name={[field.name, "professionalCapabilityCode"]}
|
||||
|
|
|
|||
|
|
@ -324,7 +324,7 @@ const SiteReviewNotice = (props) => {
|
|||
<Row gutter={16}>
|
||||
<Col span={12}>
|
||||
<Form.Item name="reviewLocation" label="审查地点" rules={[{ required: true, message: "请输入" }]}>
|
||||
<Input placeholder="机构办公场所、档案室及设备存放场所" maxLength={200} />
|
||||
<Input placeholder="机构办公场所、档案室及设备存放场所" maxLength={200} allowClear />
|
||||
</Form.Item>
|
||||
</Col>
|
||||
{/* <Col span={12}>
|
||||
|
|
@ -350,7 +350,7 @@ const SiteReviewNotice = (props) => {
|
|||
</Form.Item>
|
||||
</Col>
|
||||
<Col span={12}>
|
||||
<Form.Item name="contactPhone" label="联系电话" rules={[{ pattern: /^(\d{3,4}-?\d{7,8}|\d{11})$/, message: "请输入正确的联系电话" }]}>
|
||||
<Form.Item name="contactPhone" label="联系电话" rules={[{ pattern: /^(1[3-9]\d{9}|0\d{2,3}-?\d{7,8})$/, message: "请输入正确的联系电话(手机11位或座机号)" }]}>
|
||||
<Input placeholder="请输入联系电话" maxLength={20} />
|
||||
</Form.Item>
|
||||
</Col>
|
||||
|
|
@ -397,7 +397,7 @@ const SiteReviewNotice = (props) => {
|
|||
</Col>
|
||||
<Col span={12}>
|
||||
<Form.Item name="reviewLeader" label="审查组长">
|
||||
<Input placeholder="请输入" />
|
||||
<Input placeholder="请输入" allowClear maxLength={50} />
|
||||
</Form.Item>
|
||||
</Col>
|
||||
</Row>
|
||||
|
|
@ -409,7 +409,7 @@ const SiteReviewNotice = (props) => {
|
|||
extra="支持上传审查记录、审查意见或现场审查结果文件,限定pdf和图片,最多10个。"
|
||||
/>
|
||||
<Form.Item name="reviewOpinion" label="审查意见">
|
||||
<Input.TextArea rows={4} placeholder="填写现场审查发现、整改要求和结论依据" />
|
||||
<Input.TextArea rows={4} maxLength={200} allowClear placeholder="填写现场审查发现、整改要求和结论依据" />
|
||||
</Form.Item>
|
||||
</Form>
|
||||
</Modal>
|
||||
|
|
|
|||
Loading…
Reference in New Issue