This commit is contained in:
weiyu
2022-05-09 13:41:58 +08:00
parent 91bc1f23e7
commit 6190925043

View File

@ -214,7 +214,7 @@ export class BillingOrderComponent extends BasicTableComponent {
className: 'text-center', className: 'text-center',
index: 'paymentMethodRate', index: 'paymentMethodRate',
width: 130, width: 130,
format: record => `${record.paymentMethodRate*100}%` format: record => `${(record.paymentMethodRate*100).toFixed(2)}%`
}, },
{ title: '货主名称', index: 'shipperAppUserName', width: '180px', className: 'text-center' }, { title: '货主名称', index: 'shipperAppUserName', width: '180px', className: 'text-center' },
{ title: '所属项目', index: 'enterpriseProjectName', width: '180px', className: 'text-center' }, { title: '所属项目', index: 'enterpriseProjectName', width: '180px', className: 'text-center' },