Authored by 李奇

fixed: 结算比例格式化

... ... @@ -131,7 +131,10 @@ export default {
}, {
title: '结算比例',
key: 'commissionRate',
align: 'center'
align: 'center',
render: (h, params) => {
return `${params.row.commissionRate.substring(0, params.row.commissionRate.length - 2)}%`;
}
}, {
title: '预估佣金(元)',
key: 'brokerage',
... ...