dev-tmp1
tangjie 2026-08-14 16:09:11 +08:00
parent d783c82675
commit 892d154b03
2 changed files with 7 additions and 5 deletions

View File

@ -323,6 +323,8 @@ function PersonnelInfoPage(props) {
{ {
title: "专业能力", title: "专业能力",
dataIndex: "capabilityAssessment", dataIndex: "capabilityAssessment",
ellipsis: true,
render: renderCapabilityList, render: renderCapabilityList,
}, },
{ {
@ -1227,7 +1229,7 @@ function StaffFormModal({
watchedCapList?.[field.name]?.industryCode; watchedCapList?.[field.name]?.industryCode;
const rowOptions = rowIndustryCode const rowOptions = rowIndustryCode
? capOptionsCache[rowIndustryCode] || [] ? capOptionsCache[rowIndustryCode] || []
: CAPABILITY_OPTIONS; : [];
return ( return (
<Form.Item <Form.Item
name={[field.name, "professionalCapabilityCode"]} name={[field.name, "professionalCapabilityCode"]}

View File

@ -324,7 +324,7 @@ const SiteReviewNotice = (props) => {
<Row gutter={16}> <Row gutter={16}>
<Col span={12}> <Col span={12}>
<Form.Item name="reviewLocation" label="审查地点" rules={[{ required: true, message: "请输入" }]}> <Form.Item name="reviewLocation" label="审查地点" rules={[{ required: true, message: "请输入" }]}>
<Input placeholder="机构办公场所、档案室及设备存放场所" maxLength={200} /> <Input placeholder="机构办公场所、档案室及设备存放场所" maxLength={200} allowClear />
</Form.Item> </Form.Item>
</Col> </Col>
{/* <Col span={12}> {/* <Col span={12}>
@ -350,7 +350,7 @@ const SiteReviewNotice = (props) => {
</Form.Item> </Form.Item>
</Col> </Col>
<Col span={12}> <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} /> <Input placeholder="请输入联系电话" maxLength={20} />
</Form.Item> </Form.Item>
</Col> </Col>
@ -397,7 +397,7 @@ const SiteReviewNotice = (props) => {
</Col> </Col>
<Col span={12}> <Col span={12}>
<Form.Item name="reviewLeader" label="审查组长"> <Form.Item name="reviewLeader" label="审查组长">
<Input placeholder="请输入" /> <Input placeholder="请输入" allowClear maxLength={50} />
</Form.Item> </Form.Item>
</Col> </Col>
</Row> </Row>
@ -409,7 +409,7 @@ const SiteReviewNotice = (props) => {
extra="支持上传审查记录、审查意见或现场审查结果文件限定pdf和图片最多10个。" extra="支持上传审查记录、审查意见或现场审查结果文件限定pdf和图片最多10个。"
/> />
<Form.Item name="reviewOpinion" label="审查意见"> <Form.Item name="reviewOpinion" label="审查意见">
<Input.TextArea rows={4} placeholder="填写现场审查发现、整改要求和结论依据" /> <Input.TextArea rows={4} maxLength={200} allowClear placeholder="填写现场审查发现、整改要求和结论依据" />
</Form.Item> </Form.Item>
</Form> </Form>
</Modal> </Modal>