结算单修改

master
fengtianyangyang 2022-05-11 19:18:04 +08:00
parent c1331e8ccf
commit 479470832d
2 changed files with 36 additions and 0 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: "分销金额", title: "分销金额",
key: "distributionRebate", key: "distributionRebate",

View File

@ -248,6 +248,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: "分销金额", title: "分销金额",
key: "distributionRebate", key: "distributionRebate",