Merge branch 'develop' of https://gitlab.eascs.com/tms-ui/tms-obc-web into develop

This commit is contained in:
Taric Xin
2022-04-08 17:00:18 +08:00
9 changed files with 87 additions and 61 deletions

View File

@ -12,7 +12,7 @@
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

@ -227,4 +227,8 @@ export class ETCInvoicedRequestedComponent implements OnInit {
{ title: '签收时间', index: 'submissionTime', type: 'date', width: '150px' }
];
}
// 导出
exprot() {
this.service.exportStart(this.sf?.value, this.service.$api_get_asyncExportEtcApplyList);
}
}