fixed:查看驳回原因,取消变关闭

master
dearLin 2026-02-03 08:33:12 +08:00
parent 4fea89a4f3
commit e7f42157b5
4 changed files with 6 additions and 6 deletions

View File

@ -63,7 +63,7 @@ function List(props) {
{ title: "时效属性", dataIndex: "isLongTerm", render: (_, record) => record.isLongTerm === 1 ? "长期" : "短期" },
{ title: "材料数", dataIndex: "materialNum" },
{
title: "资质状态",
title: "资质资料状态",
dataIndex: "qualificationsStatus",
render: (_, record) => (
<div>
@ -103,11 +103,11 @@ function List(props) {
),
},
{
title: "当前状态",
title: "审核状态",
dataIndex: "status",
render: (_, record) => (
<div>
{record.status === 400 && "已通过"}
{record.status === 400 && "已完成"}
</div>
),
},

View File

@ -105,7 +105,7 @@ function List(props) {
{/* {record.status === 100 && "待审核"} */}
{/* {record.status === 200 && "审核中"} */}
{/* {record.status === 300 && "已驳回"} */}
{record.status === 400 && "已通过"}
{record.status === 400 && "已完成"}
</div>
),
},

View File

@ -65,7 +65,7 @@ function History(props) {
{record.status === 100 && "待审核"}
{record.status === 200 && "审核中"}
{record.status === 300 && "已驳回"}
{record.status === 400 && "已通过"}
{record.status === 400 && "已完成"}
</div>
) },
{ title: "审核时间", dataIndex: "auditTime" },

View File

@ -105,7 +105,7 @@ function List(props) {
{record.status === 100 && "待审核"}
{record.status === 200 && "审核中"}
{record.status === 300 && "已驳回"}
{record.status === 400 && "已通过"}
{record.status === 400 && "已完成"}
</div>
),
},