From 87e16c05a2e0699fd7c81fa7e9025febe59d125a Mon Sep 17 00:00:00 2001 From: Taric Xin Date: Wed, 11 May 2022 14:36:01 +0800 Subject: [PATCH] edit --- proxy.conf.js | 2 +- .../input-invoice-detail.component.ts | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/proxy.conf.js b/proxy.conf.js index b1279fb3..000f97b3 100644 --- a/proxy.conf.js +++ b/proxy.conf.js @@ -30,7 +30,7 @@ module.exports = { // }, '//api': { target: { - host: 'tms-api-dev.eascs.com', + host: 'tms-api-test.eascs.com', protocol: 'https:', port: 443 }, diff --git a/src/app/routes/ticket-management/components/input-invoice/input-invoice-detail/input-invoice-detail.component.ts b/src/app/routes/ticket-management/components/input-invoice/input-invoice-detail/input-invoice-detail.component.ts index 05701c15..2df6336f 100644 --- a/src/app/routes/ticket-management/components/input-invoice/input-invoice-detail/input-invoice-detail.component.ts +++ b/src/app/routes/ticket-management/components/input-invoice/input-invoice-detail/input-invoice-detail.component.ts @@ -105,7 +105,7 @@ export class InputInvoiceDetailComponent implements OnInit { widget: 'select', placeholder: '请选择', allowClear: true, - asyncData: () => this.service.getCloseAccount(), + asyncData: () => this.service.getCloseAccount() }, default: '' }, @@ -137,15 +137,15 @@ export class InputInvoiceDetailComponent implements OnInit { private initST(): STColumn[] { return [ - { title: '序号', render: 'billHCode', width: 80 }, - { title: '费用号', index: 'feecode', width: 100 }, - { title: '费用日期', index: 'feedate', type: 'date', width: 150 }, + { title: '序号', render: 'billHCode', width: 40, className: 'text-center' }, + { title: '费用号', index: 'feecode', width: 140 }, + { title: '费用日期', index: 'feedate', width: 150, className: 'text-center' }, { title: '订单号', index: 'billHCode', width: 100 }, - { title: '订单日期', index: 'billTime', width: 150 }, + { title: '订单日期', index: 'billTime', width: 150, className: 'text-center' }, { title: '结算客户', index: 'cnoName', width: 90 }, { title: '费用科目', index: 'feesubname', width: 100 }, - { title: '收票金额', render: 'invmoney', width: 140 }, - { title: '收票税额', render: 'invtax', width: 100 } + { title: '收票金额', render: 'invmoney', width: 120, className: 'text-right' }, + { title: '收票税额', render: 'invtax', width: 100, className: 'text-right' } ]; } }