This commit is contained in:
wangshiming
2022-04-09 15:32:37 +08:00
parent 6172fc9b4d
commit 5cafadb8e2
7 changed files with 8 additions and 17 deletions

View File

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

View File

@ -83,7 +83,7 @@ export class FreightAccountDetailComponent implements OnInit {
stChange(e: STChange): void {} stChange(e: STChange): void {}
exportList() { exportList() {
this.service.downloadFile(this.service.$api_get_exportAccountBalanceShipperByOperatorPage, { ...this.sf.value, pageSize: -1 }); this.service.exportStart( { ...this.sf.value, pageSize: -1 }, this.service.$api_get_exportAccountBalanceShipperByOperatorPage,);
} }
goBack() { goBack() {

View File

@ -66,7 +66,7 @@ export class PlatformAccountDetailComponent implements OnInit {
stChange(e: STChange): void {} stChange(e: STChange): void {}
exportList() { exportList() {
this.service.downloadFile(this.service.$api_get_exportAccountBalanceByPage, { ...this.sf.value, pageSize: -1 }); this.service.exportStart( { ...this.sf.value, pageSize: -1 }, this.service.$api_get_exportAccountBalanceByPage,);
} }
goBack() { goBack() {

View File

@ -195,6 +195,6 @@ export class PlatformAccountComponent implements OnInit {
]; ];
} }
exportList() { exportList() {
this.service.downloadFile(this.service.$api_get_exportPlatformAccountBalanceByOperator, { ...this.sf.value, pageSize: -1 }); this.service.exportStart( { ...this.sf.value, pageSize: -1 }, this.service.$api_get_exportPlatformAccountBalanceByOperator,);
} }
} }

View File

@ -79,7 +79,7 @@ export class RechargeRecordComponent implements OnInit {
} }
exportList() { exportList() {
this.service.downloadFile(this.service.$api_get_exportPageByOperator, { ...this.sf.value, pageSize: -1 }); this.service.exportStart( { ...this.sf.value, pageSize: -1 }, this.service.$api_get_exportPageByOperator,);
} }
private initSF(): SFSchema { private initSF(): SFSchema {

View File

@ -262,6 +262,7 @@ export class TransactionFlowComponent {
]; ];
} }
exportList() { exportList() {
this.service.downloadFile(this.service.$api_get_exportAccountBalanceDetailPage, { ...this.sf.value, pageSize: -1 });
this.service.exportStart( { ...this.sf.value, pageSize: -1 }, this.service.$api_get_exportAccountBalanceDetailPage,);
} }
} }

View File

@ -1,20 +1,10 @@
/*
* @Description :
* @Version : 1.0
* @Author : Shiming
* @Date : 2022-03-14 14:17:38
* @LastEditors : Shiming
* @LastEditTime : 2022-04-09 15:07:38
* @FilePath : \\tms-obc-web\\src\\environments\\environment.prod.ts
* Copyright (C) 2022 huzhenhong. All rights reserved.
*/
import { Environment } from '@delon/theme'; import { Environment } from '@delon/theme';
export const environment = { export const environment = {
production: true, production: true,
useHash: true, useHash: true,
api: { api: {
baseUrl: 'https://tms-api.yunduoxing.com', baseUrl: 'https://tms-api-test.eascs.com',
refreshTokenEnabled: true, refreshTokenEnabled: true,
refreshTokenType: 'auth-refresh' refreshTokenType: 'auth-refresh'
} }