bug fix
parent
35661ec474
commit
aee28c4af4
|
|
@ -186,6 +186,9 @@ export default function StaffViewModal({
|
|||
<Descriptions.Item label="主要学习工作经历" span={2}>
|
||||
{info.workExperience || "-"}
|
||||
</Descriptions.Item>
|
||||
<Descriptions.Item label="出版学术专著专利获奖论文等" span={2}>
|
||||
{info.publications || "-"}
|
||||
</Descriptions.Item>
|
||||
<Descriptions.Item label="学历证明材料" span={2}>
|
||||
{renderFileList(proofMaterialFiles)}
|
||||
</Descriptions.Item>
|
||||
|
|
|
|||
|
|
@ -1242,6 +1242,22 @@ function StaffFormModal({
|
|||
/>
|
||||
</Form.Item>
|
||||
</Col>
|
||||
<Col span={24}>
|
||||
<Form.Item
|
||||
name="publications"
|
||||
label="出版学术专著专利获奖论文等"
|
||||
rules={[
|
||||
{ max: 1000, message: "出版学术专著等长度不能超过1000个字符" },
|
||||
]}
|
||||
>
|
||||
<Input.TextArea
|
||||
rows={3}
|
||||
placeholder="请输入"
|
||||
maxLength={1000}
|
||||
showCount
|
||||
/>
|
||||
</Form.Item>
|
||||
</Col>
|
||||
</Row>
|
||||
</Form>
|
||||
</Modal>
|
||||
|
|
|
|||
Loading…
Reference in New Issue