fix: 兼容提现失败前端的展示

master
Chopper711 2023-05-06 16:23:27 +08:00
parent 4318e8d0da
commit a78374910f
1 changed files with 2 additions and 0 deletions

View File

@ -165,6 +165,8 @@ export default {
return h("Tag", { props: { color: "green" } }, "审核通过");
} else if (params.row.applyStatus == "SUCCESS") {
return h("Tag", { props: { color: "blue" } }, "提现成功");
} else if (params.row.applyStatus == "ERROR") {
return h("Tag", { props: { color: "blue" } }, "提现失败");
} else {
return h("Tag", { props: { color: "red" } }, "审核拒绝");
}