edit
This commit is contained in:
@ -53,7 +53,7 @@ export class UserCenterComponentsDriverDetailComponent implements OnInit {
|
||||
});
|
||||
// 获取驾驶证信息
|
||||
this.service
|
||||
.request(this.service.$api_get_driver_license, { appUserId: this.route.snapshot.params.id }, 'POST', false)
|
||||
.request(this.service.$api_get_driver_license, { appUserId: this.route.snapshot.params.id })
|
||||
.subscribe(res => {
|
||||
if (res) {
|
||||
this.driverDetail = res;
|
||||
@ -61,7 +61,7 @@ export class UserCenterComponentsDriverDetailComponent implements OnInit {
|
||||
});
|
||||
// 获取从业资格证信息
|
||||
this.service
|
||||
.request(this.service.$api_get_driver_practice_seniority, { appUserId: this.route.snapshot.params.id }, 'POST', false)
|
||||
.request(this.service.$api_get_driver_practice_seniority, { appUserId: this.route.snapshot.params.id })
|
||||
.subscribe(res => {
|
||||
if (res) {
|
||||
this.licenseDetail = res;
|
||||
@ -69,7 +69,7 @@ export class UserCenterComponentsDriverDetailComponent implements OnInit {
|
||||
});
|
||||
// 获取载具信息
|
||||
this.service
|
||||
.request(this.service.$api_get_driver_car_license, { appUserId: this.route.snapshot.params.id }, 'POST', false)
|
||||
.request(this.service.$api_get_driver_car_license, { appUserId: this.route.snapshot.params.id })
|
||||
.subscribe(res => {
|
||||
if (res) {
|
||||
this.carList = res;
|
||||
|
||||
Reference in New Issue
Block a user