From ddfa9ae6eec5862833c9d7ace9a0f0dc7b252f52 Mon Sep 17 00:00:00 2001 From: Taric Xin Date: Fri, 15 Apr 2022 13:58:42 +0800 Subject: [PATCH] edit --- .../etc-invoiced-logs.component.ts | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/app/routes/ticket-management/components/etc-invoiced-logs/etc-invoiced-logs.component.ts b/src/app/routes/ticket-management/components/etc-invoiced-logs/etc-invoiced-logs.component.ts index e3c0a747..c3c7c253 100644 --- a/src/app/routes/ticket-management/components/etc-invoiced-logs/etc-invoiced-logs.component.ts +++ b/src/app/routes/ticket-management/components/etc-invoiced-logs/etc-invoiced-logs.component.ts @@ -167,18 +167,18 @@ export class ETCInvoicedLogsComponent implements OnInit { return [ { title: '发票号码', index: 'invoiceNum', width: 100, type: 'link', click: item => this.routeTo(item) }, { title: '发票代码', index: 'invoiceCode', width: 130 }, - { title: '订单号', index: 'billCode', width: 140 }, - { title: '运单号', index: 'waybillCode', width: 140 }, + { title: '订单号', index: 'billCode', width: 180 }, + { title: '运单号', index: 'waybillCode', width: 180 }, { title: '入站口', index: 'enStationName', width: 100 }, { title: '出站口', index: 'exStationName', width: 100 }, { title: '司机', render: 'call3No', width: 140 }, { title: '车牌号', index: 'carNo', width: 100 }, - { title: '里程(km)', index: 'mileage', width: 120 }, + // { title: '里程(km)', index: 'mileage', width: 120 }, { title: '交易id', index: 'tradeId', width: 200 }, { title: '交易金额(元)', index: 'fee', - width: 130, + width: 150, type: 'widget', className: 'text-right', widget: { type: 'currency-chy', params: ({ record }) => ({ value: record.fee }) } @@ -195,7 +195,7 @@ export class ETCInvoicedLogsComponent implements OnInit { { title: '税额(元)', index: 'totalTaxAmount', - width: 120, + width: 150, type: 'widget', className: 'text-right', widget: { type: 'currency-chy', params: ({ record }) => ({ value: record.totalTaxAmount }) } @@ -203,15 +203,15 @@ export class ETCInvoicedLogsComponent implements OnInit { { title: '价税合计(元)', index: 'totalAmount', - width: 130, + width: 150, type: 'widget', className: 'text-right font-weight-bold', widget: { type: 'currency-chy', params: ({ record }) => ({ value: record.totalAmount }) } }, { title: '交易时间', index: 'exTime', type: 'date', width: 150 }, { title: '开票日期', index: 'invoiceMakeTime', type: 'date', width: 150 }, - { title: '销售方', index: 'sellerName', width: 90 }, - { title: '网络货运人', index: 'enterpriseInfoName', width: 120 } + { title: '销售方', index: 'sellerName', width: 150 }, + { title: '网络货运人', index: 'enterpriseInfoName', width: 220 } ]; } }