店铺订单展示来源问题处理

master
Chopper 2021-06-01 09:05:31 +08:00
parent 5f5e24638b
commit 0f1c7f39a7
1 changed files with 14 additions and 0 deletions

View File

@ -591,6 +591,20 @@
title: "来源",
key: "clientType",
width: 80,
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: "订单状态",