新增退款失败错误提示

master
lemon橪 2022-07-13 18:12:30 +08:00
parent 4674cfae37
commit 00e229e7f4
1 changed files with 7 additions and 3 deletions

View File

@ -94,7 +94,7 @@ export default {
title: "退款状态", title: "退款状态",
key: "isRefund", key: "isRefund",
fixed: "right", fixed: "right",
width: 95, width: 120,
render: (h, params) => { render: (h, params) => {
if (params.row.isRefund == "1") { if (params.row.isRefund == "1") {
return h("div", [ return h("div", [
@ -102,7 +102,11 @@ export default {
]); ]);
} else { } else {
return h("div", [ return h("div", [
h("Tag", { props: { color: "orange" } }, "未退款"), h("span", [
h("Tag", { props: { color: "orange" } }, "未退款"),
h("span", params.row.errorMessage || ''),
]),
// h("Tag", { props: { color: "orange" } }, "退"),
]); ]);
} }
}, },
@ -115,7 +119,7 @@ export default {
methods: { methods: {
// //
init() { init() {
this.getDataList(); this.getDataList();
}, },
// //
changePage(v) { changePage(v) {