This commit is contained in:
wangshiming
2022-04-13 19:15:21 +08:00
parent 37ad46224d
commit 504f01d10e

View File

@ -36,7 +36,7 @@ export class DriverAccountDetailComponent implements OnInit {
projectId: this.params.projectId,
enterpriseId: this.params.enterpriseId,
roleId: this.params.roleId,
bankType: this.params.bankType,
bankType: this.params.bankType
});
if (this.sf) {
Object.assign(requestOptions.body, {
@ -76,11 +76,22 @@ export class DriverAccountDetailComponent implements OnInit {
stChange(e: STChange): void {}
exportList() {
this.service.exportStart( { ...this.sf.value, pageSize: -1 , ltdId: this.params.ltdId,
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,);
bankType: this.params.bankType,
createTime: {
start: this.sf.value?.createTime?.[0] || '',
end: this.sf.value?.createTime?.[1] || ''
}
},
this.service.$api_get_exportAccountBalanceDriverByOperatorPage
);
}
goBack() {
@ -193,7 +204,7 @@ export class DriverAccountDetailComponent implements OnInit {
},
{ title: '付款方', index: 'payName', width: 150 },
{ title: '收款方', index: 'incomeName', width: 150 },
{ title: '备注', index: 'tradeContent' , width: 150},
{ title: '备注', index: 'tradeContent', width: 150 }
];
}
}