From ad5be2d8449816f19494dedd676c0b9b4dd3d2a2 Mon Sep 17 00:00:00 2001 From: weiyu Date: Wed, 27 Apr 2022 14:45:30 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../invoice-reporting.component.ts | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/app/routes/tax-management/components/invoice-reporting/invoice-reporting.component.ts b/src/app/routes/tax-management/components/invoice-reporting/invoice-reporting.component.ts index cb2c9e06..9ec54f1a 100644 --- a/src/app/routes/tax-management/components/invoice-reporting/invoice-reporting.component.ts +++ b/src/app/routes/tax-management/components/invoice-reporting/invoice-reporting.component.ts @@ -209,12 +209,12 @@ export class TaxManagementInvoiceReportingComponent implements OnInit { this.columns = [ { title: '', type: 'checkbox', className: 'text-center', width: '60px', }, { title: '上传状态', render: 'uploadSts', className: 'text-center', width: '120px', }, - { title: '发票类型', render: 'invoiceType', className: 'text-center', width: '120px', }, + { title: '发票类型', render: 'invoiceType', className: 'text-center', width: '180px', }, { title: '发票号码', index: 'invoiceno', className: 'text-center', - width: '150px', + width: '120px', type: 'link', click: item => { window.open(`/#/ticket/invoice-list/detail/${item.vatinvHId}?type=${item.invoiceType}`, '_blank', 'noopener') @@ -235,17 +235,17 @@ export class TaxManagementInvoiceReportingComponent implements OnInit { }, { title: '购买方统一社会信用代码', index: 'artotaxno', className: 'text-center', width: '200px' }, { - title: '订单号', index: 'billHCode', className: 'text-center', width: '120px', type: 'link', + title: '订单号', index: 'billHCode', className: 'text-center', width: '180px', type: 'link', click: item => { window.open(`/#/order-management/vehicle/vehicle-detail/${item.ltdId}`, '_blank', 'noopener') } }, - { title: '货物名称', index: 'goodsinfo', className: 'text-center', width: '180px' }, - { title: '价税合计', index: 'vatmoney', className: 'text-center', width: '180px' }, + { title: '货物名称', index: 'goodsinfo', className: 'text-center', width: '120px' }, + { title: '价税合计', index: 'vatmoney', className: 'text-center', width: '120px' }, { title: '开票日期', index: 'invoicedate', className: 'text-center', width: '180px' }, - { title: '发票所属月份', index: 'invoicemonth', className: 'text-center', width: '250px' }, - { title: '发票状态', index: 'sts', render: 'sts', className: 'text-center', width: '200px' }, - { title: '上传日期', index: 'uoloadDate', className: 'text-center', width: '200px' }, + { title: '发票所属月份', index: 'invoicemonth', className: 'text-center', width: '140px' }, + { title: '发票状态', index: 'sts', render: 'sts', className: 'text-center', width: '120px' }, + { title: '上传日期', index: 'uoloadDate', className: 'text-center', width: '180px' }, ]; }