Merge branch 'master' of https://gitee.com/beijing_hongye_huicheng/lilishop-ui
commit
46a93c5524
|
@ -119,6 +119,19 @@
|
||||||
title: "订单来源",
|
title: "订单来源",
|
||||||
key: "clientType",
|
key: "clientType",
|
||||||
width: 95,
|
width: 95,
|
||||||
|
render: (h, params) => {
|
||||||
|
if (params.row.clientType == "H5") {
|
||||||
|
return h("div", {}, "移动端");
|
||||||
|
} else if (params.row.clientType == "PC") {
|
||||||
|
return h("div", {}, "PC端");
|
||||||
|
} else if (params.row.clientType == "WECHAT_MP") {
|
||||||
|
return h("div", {}, "小程序端");
|
||||||
|
} else if (params.row.clientType == "APP") {
|
||||||
|
return h("div", {}, "移动应用端");
|
||||||
|
} else {
|
||||||
|
return h("div", {}, params.row.clientType);
|
||||||
|
}
|
||||||
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "买家名称",
|
title: "买家名称",
|
||||||
|
|
Loading…
Reference in New Issue