diff --git a/src/pages/Container/EnterpriseInfo/PersonnelInfo/List/index.js b/src/pages/Container/EnterpriseInfo/PersonnelInfo/List/index.js index 2b51017..4d7ff25 100644 --- a/src/pages/Container/EnterpriseInfo/PersonnelInfo/List/index.js +++ b/src/pages/Container/EnterpriseInfo/PersonnelInfo/List/index.js @@ -16,6 +16,7 @@ import { TreeSelect, Upload, Tag, + Tooltip, Divider } from "antd"; import { InboxOutlined } from "@ant-design/icons"; @@ -314,7 +315,7 @@ function PersonnelInfoPage(props) { {arr}; }, }, + { + title: "状态", + dataIndex: "isCertComplete", + width: 100, + render: (val) => + val ? ( + 已完善 + ) : ( + + 未完善 + + ), + }, { title: "操作", width: 200, @@ -1109,7 +1123,7 @@ function StaffFormModal({ 学历信息 - + 注安信息 - + 评价师信息 - + 职称信息 - + diff --git a/src/pages/Container/EnterpriseInfo/PersonnelInfo/List/index.less b/src/pages/Container/EnterpriseInfo/PersonnelInfo/List/index.less index 4b171d2..b6f604a 100644 --- a/src/pages/Container/EnterpriseInfo/PersonnelInfo/List/index.less +++ b/src/pages/Container/EnterpriseInfo/PersonnelInfo/List/index.less @@ -25,6 +25,17 @@ min-width: 0; } +.cert-complete-tag { + &.complete { + color: #52c41a; + } + + &.incomplete { + color: #ff4d4f; + cursor: pointer; + } +} + .required-star { color: #ff4d4f; margin-right: 4px;