edit
This commit is contained in:
@ -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: '操作',
|
||||
|
||||
Reference in New Issue
Block a user