7月28日需求变更,准入资质申请 同步到企业端
parent
4b05d819f7
commit
1c4bbb2ce4
|
|
@ -65,6 +65,7 @@ function List(props) {
|
||||||
{ title: "审核公司", dataIndex: "groupUnitName" },
|
{ title: "审核公司", dataIndex: "groupUnitName" },
|
||||||
{ title: "审核状态", dataIndex: "status", render: (_, record) => (
|
{ title: "审核状态", dataIndex: "status", render: (_, record) => (
|
||||||
<>
|
<>
|
||||||
|
{record.status === 100 && `暂存`}
|
||||||
{record.status === 200 && "审核中"}
|
{record.status === 200 && "审核中"}
|
||||||
{record.status === 300 && "已驳回"}
|
{record.status === 300 && "已驳回"}
|
||||||
{record.status === 400 && "已通过"}
|
{record.status === 400 && "已通过"}
|
||||||
|
|
@ -89,7 +90,7 @@ function List(props) {
|
||||||
{props.permission("zrzz-jtgs-zrzzsq-btn-xg") && (
|
{props.permission("zrzz-jtgs-zrzzsq-btn-xg") && (
|
||||||
<Button
|
<Button
|
||||||
type="link"
|
type="link"
|
||||||
disabled={record.status !== 300}
|
disabled={![100, 300].includes(record.status)}
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
props.history.push(`./add?id=${record.id}`);
|
props.history.push(`./add?id=${record.id}`);
|
||||||
}}
|
}}
|
||||||
|
|
@ -97,7 +98,7 @@ function List(props) {
|
||||||
修改
|
修改
|
||||||
</Button>
|
</Button>
|
||||||
)}
|
)}
|
||||||
{props.permission("zrzz-jtgs-zrzzsq-btn-ckbhyy") && (
|
{false && (
|
||||||
<Button
|
<Button
|
||||||
type="link"
|
type="link"
|
||||||
danger
|
danger
|
||||||
|
|
@ -109,6 +110,16 @@ function List(props) {
|
||||||
查看驳回原因
|
查看驳回原因
|
||||||
</Button>
|
</Button>
|
||||||
)}
|
)}
|
||||||
|
{props.permission("zrzz-jtgs-zrzzsq-btn-ckbhyy") && (
|
||||||
|
<Button
|
||||||
|
type="link"
|
||||||
|
onClick={() => {
|
||||||
|
props.history.push(`./rejectRecord?id=${record.id}`);
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
驳回记录
|
||||||
|
</Button>
|
||||||
|
)}
|
||||||
</Space>
|
</Space>
|
||||||
),
|
),
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue