fix bug
This commit is contained in:
@ -38,7 +38,7 @@ export class ETCInvoicedListComponent implements OnInit {
|
||||
nzTitle: '运单交易明细',
|
||||
nzContent: TransactionDetailsComponent,
|
||||
nzWidth: 900,
|
||||
nzComponentParams: { data: [] },
|
||||
nzComponentParams: { data: item },
|
||||
nzOnOk: com => {
|
||||
console.log(com.selectedData);
|
||||
},
|
||||
@ -147,8 +147,8 @@ export class ETCInvoicedListComponent implements OnInit {
|
||||
|
||||
private initST(): STColumn[] {
|
||||
return [
|
||||
{ title: '运单号', index: 'wayBillCode' },
|
||||
{ title: '订单号', index: 'billCode' },
|
||||
{ title: '运单号', index: 'wayBillCode',width: 200 },
|
||||
{ title: '订单号', index: 'billCode',width: 200 },
|
||||
{
|
||||
title: '开票状态',
|
||||
index: 'invoicingStatus',
|
||||
@ -157,12 +157,12 @@ export class ETCInvoicedListComponent implements OnInit {
|
||||
width: 120
|
||||
},
|
||||
{ title: '订单类型', index: 'billTypeLabel', width: 120 },
|
||||
{ title: '装货地', index: 'loadingPlace' },
|
||||
{ title: '卸货地', index: 'dischargePlace' },
|
||||
{ title: '司机信息', render: 'call1No' },
|
||||
{ title: '车辆信息', render: 'call12No' },
|
||||
{ title: '托运人', index: 'shipperAppUserName' },
|
||||
{ title: '网络货运人', index: 'enterpriseInfoName' },
|
||||
{ title: '装货地', index: 'loadingPlace',width: 200 },
|
||||
{ title: '卸货地', index: 'dischargePlace' ,width: 200},
|
||||
{ title: '司机信息', render: 'call1No' ,width: 200},
|
||||
{ title: '车辆信息', render: 'call12No',width: 200 },
|
||||
{ title: '托运人', index: 'shipperAppUserName',width: 200 },
|
||||
{ title: '网络货运人', index: 'enterpriseInfoName' ,width: 200},
|
||||
{
|
||||
title: '开票金额',
|
||||
index: 'invoicingAmount',
|
||||
@ -179,10 +179,11 @@ export class ETCInvoicedListComponent implements OnInit {
|
||||
className: 'text-right',
|
||||
widget: { type: 'currency-chy', params: ({ record }) => ({ value: record.invoicingNumber }) }
|
||||
},
|
||||
{ title: '申请时间', index: 'orderReceivingTime', type: 'date' },
|
||||
{ title: '申请时间', index: 'orderReceivingTime', type: 'date',width: 200 },
|
||||
{
|
||||
title: '操作',
|
||||
className: 'text-center',
|
||||
width: 120,
|
||||
buttons: [
|
||||
{
|
||||
text: '交易明细',
|
||||
|
||||
Reference in New Issue
Block a user