This commit is contained in:
wangshiming
2022-04-09 15:33:53 +08:00
parent 8e9b5f6832
commit 8ac4115e1d
3 changed files with 3 additions and 3 deletions

View File

@ -47,7 +47,7 @@ export class AdvanceCollectionComponent {
} }
exportList() { exportList() {
this.service.downloadFile(this.service.$mock_url, { ...this.sf.value, pageSize: -1 }); this.service.exportStart( { ...this.sf.value, pageSize: -1 }, this.service.$api_get_exportPlatformAccountBalanceByOperator,);
} }
private initSF(): SFSchema { private initSF(): SFSchema {

View File

@ -90,7 +90,7 @@ export class CostManagementComponent implements OnInit {
} }
exportList() { exportList() {
this.service.downloadFile(this.service.$mock_url, { ...this.sf.value, pageSize: -1 }); this.service.exportStart( { ...this.sf.value, pageSize: -1 }, this.service.$api_get_exportPlatformAccountBalanceByOperator,);
} }
routeTo(url: string, params?: any, status?: any) { routeTo(url: string, params?: any, status?: any) {

View File

@ -4,7 +4,7 @@
* @Author : Shiming * @Author : Shiming
* @Date : 2022-01-18 15:57:44 * @Date : 2022-01-18 15:57:44
* @LastEditors : Shiming * @LastEditors : Shiming
* @LastEditTime : 2022-04-08 17:30:12 * @LastEditTime : 2022-04-09 15:33:41
* @FilePath : \\tms-obc-web\\src\\app\\routes\\financial-management\\services\\freight-account.service.ts * @FilePath : \\tms-obc-web\\src\\app\\routes\\financial-management\\services\\freight-account.service.ts
* Copyright (C) 2022 huzhenhong. All rights reserved. * Copyright (C) 2022 huzhenhong. All rights reserved.
*/ */