新增退款失败错误提示
parent
4674cfae37
commit
00e229e7f4
|
@ -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("span", [
|
||||||
h("Tag", { props: { color: "orange" } }, "未退款"),
|
h("Tag", { props: { color: "orange" } }, "未退款"),
|
||||||
|
h("span", params.row.errorMessage || ''),
|
||||||
|
]),
|
||||||
|
// h("Tag", { props: { color: "orange" } }, "未退款"),
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue