企业端增加【审核记录菜单】

master
LiuJiaNan 2026-02-27 16:57:45 +08:00
parent b6c757ba30
commit 25ac00618f
1 changed files with 11 additions and 9 deletions

View File

@ -15,7 +15,7 @@ function List(props) {
const { tableProps, getData } = useTable(props["inCheckList"], {
form,
params: {
eqStakeholderLevel: "one-level",
eqStakeholderLevel: "two-level",
eqProjectStatus: 4,
},
});
@ -54,14 +54,16 @@ function List(props) {
width: 150,
render: (_, record) => (
<Space>
<Button
type="link"
onClick={() => {
props.history.push(`./reView?id=${record.id}`);
}}
>
查看
</Button>
{props.permission("xmsh-jtdw-bashjl-btn-ck") && (
<Button
type="link"
onClick={() => {
props.history.push(`./reView?id=${record.id}`);
}}
>
查看
</Button>
)}
</Space>
),
},