This commit is contained in:
wangshiming
2022-04-13 19:14:09 +08:00
parent a8fa9fd1af
commit 5e88772da7
2 changed files with 7 additions and 1 deletions

View File

@ -76,7 +76,11 @@ export class DriverAccountDetailComponent implements OnInit {
stChange(e: STChange): void {}
exportList() {
this.service.exportStart( { ...this.sf.value, pageSize: -1 }, this.service.$api_get_exportAccountBalanceDriverByOperatorPage,);
this.service.exportStart( { ...this.sf.value, pageSize: -1 , ltdId: this.params.ltdId,
projectId: this.params.projectId,
enterpriseId: this.params.enterpriseId,
roleId: this.params.roleId,
bankType: this.params.bankType,}, this.service.$api_get_exportAccountBalanceDriverByOperatorPage,);
}
goBack() {

View File

@ -81,6 +81,8 @@ export class DriverAccountComponent implements OnInit {
}
exportList() {
console.log(this.sf.value);
this.service.exportStart({ ...this.sf.value, pageSize: -1 }, this.service.$api_export_driver_account_page);
}