diff --git a/src/pages/Container/Supervision/PerformanceEvaluation/List/index.js b/src/pages/Container/Supervision/PerformanceEvaluation/List/index.js index 6aae4d4..05b8b31 100644 --- a/src/pages/Container/Supervision/PerformanceEvaluation/List/index.js +++ b/src/pages/Container/Supervision/PerformanceEvaluation/List/index.js @@ -7,6 +7,7 @@ import useTable from "zy-react-library/hooks/useTable"; import { getLabelName } from "zy-react-library/utils"; import { EVALUATION_TYPE_ENUM } from "~/enumerate/constant"; import { NS_PERFORMANCE_EVALUATION } from "~/enumerate/namespace"; +import {Permission} from "@cqsjjb/jjb-common-decorator/permission"; function List(props) { const [form] = Search.useForm(); @@ -89,4 +90,4 @@ function List(props) { ); } -export default Connect([NS_PERFORMANCE_EVALUATION], true)(List); +export default Connect([NS_PERFORMANCE_EVALUATION], true)(Permission(List));