edit
This commit is contained in:
@ -53,6 +53,7 @@ export class UserCenterComponentsDriverDetailComponent implements OnInit {
|
||||
@ViewChild('rejectedDriverModal', { static: false })
|
||||
rejectedDriverModal!: any;
|
||||
adressCodeList: any = [];
|
||||
billEvaluateList: any = [];
|
||||
approvalOpinion = '';
|
||||
|
||||
isEditUser = false;
|
||||
@ -125,6 +126,16 @@ export class UserCenterComponentsDriverDetailComponent implements OnInit {
|
||||
this.carList = res;
|
||||
}
|
||||
});
|
||||
// 获取评价信息
|
||||
this.service
|
||||
.request(this.service.$api_get_driver_billEvaluate, { passiveUserId: this.route.snapshot.params.id }, 'POST', false)
|
||||
.subscribe(res => {
|
||||
if (res) {
|
||||
this.billEvaluateList = res;
|
||||
console.log(this.billEvaluateList);
|
||||
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
/** 启用/冻结司机 */
|
||||
|
||||
Reference in New Issue
Block a user