新增退款失败错误提示
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("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) {
|
||||||
|
|
Loading…
Reference in New Issue