fix: 前后端交互数据出现问题处理

This commit is contained in:
Chopper711
2023-09-27 07:07:22 +08:00
parent f968f3d20d
commit 7152e339e5
2 changed files with 5 additions and 1 deletions

View File

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