This commit is contained in:
Taric Xin
2022-03-07 11:22:56 +08:00
parent 198d9bf776
commit 9f0b3da44c
5 changed files with 71 additions and 36 deletions

View File

@ -56,7 +56,7 @@ export class UserCenterComponentsDriverDetailComponent implements OnInit {
adressCodeList: any = [];
billEvaluateList: any = [];
approvalOpinion = '';
bankList: any[] = [];
isEditUser = false;
isEditDriver = false;
@ -132,6 +132,17 @@ export class UserCenterComponentsDriverDetailComponent implements OnInit {
this.billEvaluateList = res;
}
});
// 获取用户银行信息
this.service
.request(this.service.$api_get_user_bank_list, {
roleId: this.route.snapshot.params.id
})
.subscribe(res => {
if (res) {
this.bankList = res;
}
});
}
/** 启用/冻结司机 */