diff --git a/src/app/routes/usercenter/components/driver/detail/detail.component.ts b/src/app/routes/usercenter/components/driver/detail/detail.component.ts index 5f3ef903..bb13924b 100644 --- a/src/app/routes/usercenter/components/driver/detail/detail.component.ts +++ b/src/app/routes/usercenter/components/driver/detail/detail.component.ts @@ -126,7 +126,7 @@ export class UserCenterComponentsDriverDetailComponent implements OnInit { }); // 获取评价信息 this.service - .request(this.service.$api_get_driver_billEvaluate, { evaluateUserId: this.route.snapshot.params.id }, 'POST', false) + .request(this.service.$api_get_driver_billEvaluate, { passiveUserId: this.route.snapshot.params.id }, 'POST', false) .subscribe(res => { if (res) { this.billEvaluateList = res; diff --git a/src/app/routes/usercenter/components/freight/list/detail/detail.component.ts b/src/app/routes/usercenter/components/freight/list/detail/detail.component.ts index 50d6da03..685c46ab 100644 --- a/src/app/routes/usercenter/components/freight/list/detail/detail.component.ts +++ b/src/app/routes/usercenter/components/freight/list/detail/detail.component.ts @@ -109,7 +109,7 @@ export class FreightComponentsListDetailComponent implements OnInit, OnDestroy { // 获取评价信息 this.service - .request(this.service.$api_get_driver_billEvaluate, { evaluateUserId: this.route.snapshot.params.id }, 'POST', false) + .request(this.service.$api_get_driver_billEvaluate, { passiveUserId: this.route.snapshot.params.id }, 'POST', false) .subscribe(res => { if (res?.length > 0) { this.service.request(this.service.$api_get_freight_billEvaluate, res).subscribe(billEvaluate => {