Authored by zhangwenxue

feat(franchise): fix table title, field value

API changed
... ... @@ -63,12 +63,9 @@ export default function() {
align: 'center',
},
{
title: '供应商应得单价',
key: 'clearingPrice',
title: '供应商应得',
key: 'clearingPriceSum',
align: 'center',
render(h, params) {
return (params.row.clearingPrice * params.row.salesNums).toFixed(2);
},
},
{
title: '审核状态',
... ...
... ... @@ -48,12 +48,9 @@ export default function() {
align: 'center',
},
{
title: '销售供应商应得',
title: '供应商应得',
key: 'paymentAmount',
align: 'center',
render(h, params) {
return (params.row.salesNums * params.row.paymentAmount).toFixed(2);
},
},
{
title: '付款状态',
... ...