This commit is contained in:
mahe
2023-05-09 11:05:49 +08:00
3 changed files with 10 additions and 1 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" } }, "审核拒绝");
}
@@ -249,6 +251,8 @@ export default {
return "审核通过(提现成功)";
} else if (val === "FAIL_AUDITING") {
return "审核拒绝";
} else if (val === "ERROR") {
return "提现失败";
} else {
return "未知状态";
}