Merge branch 'develop' of https://gitlab.eascs.com/tms-ui/tms-obc-web into develop

This commit is contained in:
wangshiming
2022-01-14 14:39:04 +08:00
23 changed files with 1316 additions and 37 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, ctfId: item.identityNo }
},
nzFooter: null
});
}