From cb7ef02e64554e99b17abce44be507880a727a9a Mon Sep 17 00:00:00 2001 From: Taric Xin Date: Wed, 9 Feb 2022 09:13:14 +0800 Subject: [PATCH] edit --- .../invoice-requested.component.html | 10 +++++----- .../invoice-requested.component.ts | 13 ++++++++++--- 2 files changed, 15 insertions(+), 8 deletions(-) diff --git a/src/app/routes/ticket-management/components/invoice-requested/invoice-requested.component.html b/src/app/routes/ticket-management/components/invoice-requested/invoice-requested.component.html index 4f46c02a..e468bdd9 100644 --- a/src/app/routes/ticket-management/components/invoice-requested/invoice-requested.component.html +++ b/src/app/routes/ticket-management/components/invoice-requested/invoice-requested.component.html @@ -36,10 +36,10 @@ - - - - + + + + @@ -70,7 +70,7 @@ > {{ item.vatappcode }}
- +
diff --git a/src/app/routes/ticket-management/components/invoice-requested/invoice-requested.component.ts b/src/app/routes/ticket-management/components/invoice-requested/invoice-requested.component.ts index 84d90f69..fce6a332 100644 --- a/src/app/routes/ticket-management/components/invoice-requested/invoice-requested.component.ts +++ b/src/app/routes/ticket-management/components/invoice-requested/invoice-requested.component.ts @@ -23,7 +23,7 @@ export class InvoiceRequestedComponent implements OnInit { sf!: SFComponent; @ViewChild('rejectModal', { static: false }) rejectModal!: any; - resourceStatus!: any; + resourceStatus: any = '1'; columns: STColumn[] = this.initST(); searchSchema: SFSchema = this.initSF(); @@ -396,7 +396,14 @@ export class InvoiceRequestedComponent implements OnInit { { title: '注册地址', index: 'registerAddr', width: 140 }, { title: '注册电话', index: 'registerPhone', width: 120 }, { title: '服务名称', index: 'vatname', width: 100 }, - { title: '销货清单', index: 'isdetail', width: 100,format:(item)=>{return item.isdetail === 0 ? '不需要':'需要'} }, + { + title: '销货清单', + index: 'isdetail', + width: 100, + format: item => { + return item.isdetail === 0 ? '不需要' : '需要'; + } + }, { title: '其他要求', index: 'otherremarks', width: 100 }, { title: '申请人', index: 'applyName', width: 90 }, { title: '申请时间', index: 'applyTime', type: 'date', width: 150 }, @@ -429,7 +436,7 @@ export class InvoiceRequestedComponent implements OnInit { { text: '查看原因
', click: item => this.showReason(item) - }, + } // { // text: '下载对账单' // // click: item => this.rejectAction(item)