git stashMerge branch 'master' of gitee.com:beijing_hongye_huicheng/lilishop-ui

This commit is contained in:
mhhhh
2022-05-12 10:44:17 +08:00
4 changed files with 57 additions and 1 deletions

View File

@@ -246,6 +246,24 @@ export default {
},
},
{
title: "平台优惠券补贴金额",
key: "siteCouponCommission",
render: (h, params) => {
if(params.row.siteCouponCommission == null){
return h(
"div",
"-"
);
}else{
return h(
"div",
this.$options.filters.unitPrice(params.row.siteCouponCommission, "¥")
);
}
},
},
{
title: "分销金额",
key: "distributionRebate",