代码还原

This commit is contained in:
liang.chao 2025-02-26 17:30:46 +08:00
parent 3640434634
commit b61320a80e
1 changed files with 2 additions and 7 deletions

View File

@ -75,13 +75,8 @@ function initTable() {
} }
} }
, { , {
field: 'status', align: 'center', title: '审核状态', templet: d => { field: 'status', align: 'center', title: '审核状态', templet: d =>
if (d.rejectReason) { Number(d.status) === 0 ? '待审核' : (Number(d.status) === 1 ? '已审核' : '审核中')
return '审核驳回'
} else {
return Number(d.status) === 0 ? '待审核' : (Number(d.status) === 1 ? '已审核' : '审核中')
}
}
} }
, {field: 'rejectReason', align: 'center', title: '驳回原因'} , {field: 'rejectReason', align: 'center', title: '驳回原因'}
, { , {