This commit is contained in:
Taric Xin
2022-01-14 09:37:21 +08:00
parent 35c3135e52
commit 7659770852
8 changed files with 75 additions and 19 deletions

View File

@ -102,12 +102,18 @@ export class UserCenterComponentsDriverComponent implements OnInit {
}
showAccountDetail(item: any) {
console.log(item);
this.modal.create({
nzTitle: '资金账户',
nzContent: AccountDetailComponent,
nzNoAnimation: true,
nzWidth: 600,
nzComponentParams: { isCanCreate: true },
nzComponentParams: {
isCanCreate: true,
url: '/api/fcc/accountBalance/getDriverAccountDetailByOperator',
params: { accountType: 2, roleId: item.appUserId }
},
nzFooter: null
});
}