This commit is contained in:
Taric Xin
2022-01-19 14:02:10 +08:00
parent d3246222f7
commit eb42a89f0f
6 changed files with 152 additions and 41 deletions

View File

@ -45,7 +45,7 @@ export class ETCInvoicedListComponent implements OnInit {
nzOkText: '导出'
});
modal.afterClose.subscribe(res => {
if(res){
if (res) {
this.st.load();
}
});
@ -155,8 +155,22 @@ export class ETCInvoicedListComponent implements OnInit {
{ title: '车辆信息', render: 'call12No' },
{ title: '托运人', index: 'shipperAppUserName' },
{ title: '网络货运人', index: 'enterpriseInfoName' },
{ title: '开票金额', index: 'invoicingAmount' },
{ title: '开票张数', index: 'invoicingNumber' },
{
title: '开票金额',
index: 'invoicingAmount',
width: 100,
type: 'widget',
className: 'text-right',
widget: { type: 'currency-chy', params: ({ record }) => ({ value: record.invoicingAmount }) }
},
{
title: '开票张数',
index: 'invoicingNumber',
width: 100,
type: 'widget',
className: 'text-right',
widget: { type: 'currency-chy', params: ({ record }) => ({ value: record.invoicingNumber }) }
},
{ title: '申请时间', index: 'orderReceivingTime', type: 'date' },
{
title: '操作',