新增退款失败错误提示
parent
4674cfae37
commit
00e229e7f4
|
@ -94,7 +94,7 @@ export default {
|
|||
title: "退款状态",
|
||||
key: "isRefund",
|
||||
fixed: "right",
|
||||
width: 95,
|
||||
width: 120,
|
||||
render: (h, params) => {
|
||||
if (params.row.isRefund == "1") {
|
||||
return h("div", [
|
||||
|
@ -102,7 +102,11 @@ export default {
|
|||
]);
|
||||
} else {
|
||||
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" } }, "未退款"),
|
||||
]);
|
||||
}
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue