From 66a53e62d988cc733f19aa00cedfd5ba6d594f09 Mon Sep 17 00:00:00 2001 From: wangshiming Date: Wed, 13 Apr 2022 20:46:11 +0800 Subject: [PATCH] fix bug --- .../platform-account-detail.component.ts | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/src/app/routes/financial-management/components/platform-account/platform-account-detail/platform-account-detail.component.ts b/src/app/routes/financial-management/components/platform-account/platform-account-detail/platform-account-detail.component.ts index 34a9e8e0..43e46e5b 100644 --- a/src/app/routes/financial-management/components/platform-account/platform-account-detail/platform-account-detail.component.ts +++ b/src/app/routes/financial-management/components/platform-account/platform-account-detail/platform-account-detail.component.ts @@ -66,7 +66,18 @@ export class PlatformAccountDetailComponent implements OnInit { stChange(e: STChange): void {} exportList() { - this.service.exportStart({ ...this.sf.value, pageSize: -1 }, this.service.$api_get_exportAccountBalanceByPage); + this.service.exportStart( + { + ...this.sf.value, + ...this.params, + createTime: { + start: this.sf.value?.createTime?.[0] || '', + end: this.sf.value?.createTime?.[1] || '' + }, + pageSize: -1 + }, + this.service.$api_get_exportAccountBalanceByPage + ); } goBack() {