edit
This commit is contained in:
@ -36,10 +36,10 @@
|
|||||||
|
|
||||||
<nz-card class="content-box" nzBordered>
|
<nz-card class="content-box" nzBordered>
|
||||||
<nz-tabset [nzTabBarExtraContent]="extraTemplate">
|
<nz-tabset [nzTabBarExtraContent]="extraTemplate">
|
||||||
<nz-tab nzTitle="待受理" (nzClick)="selectChange(1)"></nz-tab>
|
<nz-tab nzTitle="待受理" (nzClick)="selectChange('1')"></nz-tab>
|
||||||
<nz-tab nzTitle="处理中" (nzClick)="selectChange(2)"></nz-tab>
|
<nz-tab nzTitle="处理中" (nzClick)="selectChange('2')"></nz-tab>
|
||||||
<nz-tab nzTitle="已拒绝" (nzClick)="selectChange(4)"></nz-tab>
|
<nz-tab nzTitle="已拒绝" (nzClick)="selectChange('4')"></nz-tab>
|
||||||
<nz-tab nzTitle="已完成" (nzClick)="selectChange(3)"></nz-tab>
|
<nz-tab nzTitle="已完成" (nzClick)="selectChange('3')"></nz-tab>
|
||||||
<nz-tab nzTitle="全部" (nzClick)="selectChange(null)"></nz-tab>
|
<nz-tab nzTitle="全部" (nzClick)="selectChange(null)"></nz-tab>
|
||||||
</nz-tabset>
|
</nz-tabset>
|
||||||
<ng-template #extraTemplate>
|
<ng-template #extraTemplate>
|
||||||
@ -70,7 +70,7 @@
|
|||||||
>
|
>
|
||||||
<ng-template st-row="vatappcode" let-item let-index="index" let-column="column">
|
<ng-template st-row="vatappcode" let-item let-index="index" let-column="column">
|
||||||
{{ item.vatappcode }} <br />
|
{{ item.vatappcode }} <br />
|
||||||
<label class="text-primary">待受理</label>
|
<label class="text-primary">{{item.stsLabel}}</label>
|
||||||
</ng-template>
|
</ng-template>
|
||||||
</st>
|
</st>
|
||||||
</nz-card>
|
</nz-card>
|
||||||
|
|||||||
@ -23,7 +23,7 @@ export class InvoiceRequestedComponent implements OnInit {
|
|||||||
sf!: SFComponent;
|
sf!: SFComponent;
|
||||||
@ViewChild('rejectModal', { static: false })
|
@ViewChild('rejectModal', { static: false })
|
||||||
rejectModal!: any;
|
rejectModal!: any;
|
||||||
resourceStatus!: any;
|
resourceStatus: any = '1';
|
||||||
columns: STColumn[] = this.initST();
|
columns: STColumn[] = this.initST();
|
||||||
searchSchema: SFSchema = this.initSF();
|
searchSchema: SFSchema = this.initSF();
|
||||||
|
|
||||||
@ -396,7 +396,14 @@ export class InvoiceRequestedComponent implements OnInit {
|
|||||||
{ title: '注册地址', index: 'registerAddr', width: 140 },
|
{ title: '注册地址', index: 'registerAddr', width: 140 },
|
||||||
{ title: '注册电话', index: 'registerPhone', width: 120 },
|
{ title: '注册电话', index: 'registerPhone', width: 120 },
|
||||||
{ title: '服务名称', index: 'vatname', width: 100 },
|
{ 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: 'otherremarks', width: 100 },
|
||||||
{ title: '申请人', index: 'applyName', width: 90 },
|
{ title: '申请人', index: 'applyName', width: 90 },
|
||||||
{ title: '申请时间', index: 'applyTime', type: 'date', width: 150 },
|
{ title: '申请时间', index: 'applyTime', type: 'date', width: 150 },
|
||||||
@ -429,7 +436,7 @@ export class InvoiceRequestedComponent implements OnInit {
|
|||||||
{
|
{
|
||||||
text: '查看原因<br/>',
|
text: '查看原因<br/>',
|
||||||
click: item => this.showReason(item)
|
click: item => this.showReason(item)
|
||||||
},
|
}
|
||||||
// {
|
// {
|
||||||
// text: '下载对账单'
|
// text: '下载对账单'
|
||||||
// // click: item => this.rejectAction(item)
|
// // click: item => this.rejectAction(item)
|
||||||
|
|||||||
Reference in New Issue
Block a user