This commit is contained in:
Taric Xin
2022-02-09 09:13:14 +08:00
parent 29f656184a
commit cb7ef02e64
2 changed files with 15 additions and 8 deletions

View File

@ -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: '查看原因<br/>',
click: item => this.showReason(item)
},
}
// {
// text: '下载对账单'
// // click: item => this.rejectAction(item)