e
This commit is contained in:
@ -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;
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
/** 启用/冻结司机 */
|
||||
|
||||
Reference in New Issue
Block a user