This commit is contained in:
wangshiming
2022-04-09 15:49:21 +08:00
parent f00ddf4bfb
commit 91653141c0
3 changed files with 8 additions and 2 deletions

View File

@ -11,7 +11,7 @@
<div nz-col [nzXl]="_$expand ? 24 : 6" [nzLg]="24" [nzSm]="24" [nzXs]="24" class="text-right">
<button nz-button nzType="primary" [nzLoading]="service.http.loading" (click)="st?.load(1)">查询</button>
<button nz-button (click)="resetSF()">重置</button>
<button nz-button> 导出</button>
<button nz-button (click)="exprot()"> 导出</button>
<button nz-button nzType="link" (click)="expandToggle()">
{{ !_$expand ? '展开' : '收起' }}
<i nz-icon [nzType]="!_$expand ? 'down' : 'up'"></i>

View File

@ -184,4 +184,8 @@ export class ETCInvoicedListComponent implements OnInit {
}
];
}
// 导出
exprot() {
this.service.exportStart({...this.sf?.value, pageSize: -1}, this.service.$api_get_asyncExportEtcApplyRecordList);
}
}