fix:用户端提现状态展示问题处理

master
Chopper711 2023-05-06 16:34:33 +08:00
parent 8ad79b8728
commit 056386e8e9
1 changed files with 2 additions and 0 deletions

View File

@ -369,6 +369,8 @@ export default {
return h('div', [h('span', {}, '申请中')]);
} else if (params.row.applyStatus === 'VIA_AUDITING') {
return h('div', [h('span', {}, '提现成功')]);
} else if (params.row.applyStatus === 'ERROR') {
return h('div', [h('span', {}, '提现失败')]);
} else {
return h('div', [h('span', {}, '审核拒绝')]);
}