This commit is contained in:
liang.chao 2025-12-04 10:59:07 +08:00
parent 068a5b49bb
commit 36cb5d5c59
1 changed files with 7 additions and 5 deletions

View File

@ -186,16 +186,18 @@ const handleDetail = (row) => {
const getStatusText = (status) => { const getStatusText = (status) => {
switch (status) { switch (status) {
case '0': return '整改中' case '0': return '整改中'
case '1': return '已反馈' case '1': return '已通过'
case '2': return '已完成' case '2': return '已驳回'
case '3': return '待审核'
default: return '未知' default: return '未知'
} }
} }
const getStatusType = (status) => { const getStatusType = (status) => {
switch (status) { switch (status) {
case '0': return 'warning' case '0': return 'warning' //
case '1': return 'primary' case '1': return 'success' //
case '2': return 'success' case '2': return 'danger' //
case '3': return 'info' //
default: return 'info' default: return 'info'
} }
} }