7月28日需求变更,准入资质申请 同步到企业端

dev
LiuJiaNan 2026-08-05 16:20:07 +08:00
parent 4b05d819f7
commit 1c4bbb2ce4
1 changed files with 13 additions and 2 deletions

View File

@ -65,6 +65,7 @@ function List(props) {
{ title: "审核公司", dataIndex: "groupUnitName" },
{ title: "审核状态", dataIndex: "status", render: (_, record) => (
<>
{record.status === 100 && `暂存`}
{record.status === 200 && "审核中"}
{record.status === 300 && "已驳回"}
{record.status === 400 && "已通过"}
@ -89,7 +90,7 @@ function List(props) {
{props.permission("zrzz-jtgs-zrzzsq-btn-xg") && (
<Button
type="link"
disabled={record.status !== 300}
disabled={![100, 300].includes(record.status)}
onClick={() => {
props.history.push(`./add?id=${record.id}`);
}}
@ -97,7 +98,7 @@ function List(props) {
修改
</Button>
)}
{props.permission("zrzz-jtgs-zrzzsq-btn-ckbhyy") && (
{false && (
<Button
type="link"
danger
@ -109,6 +110,16 @@ function List(props) {
查看驳回原因
</Button>
)}
{props.permission("zrzz-jtgs-zrzzsq-btn-ckbhyy") && (
<Button
type="link"
onClick={() => {
props.history.push(`./rejectRecord?id=${record.id}`);
}}
>
驳回记录
</Button>
)}
</Space>
),
},