This commit is contained in:
Taric Xin
2021-12-13 20:57:26 +08:00
parent c4b249fe94
commit 5c7a303abc
14 changed files with 800 additions and 1164 deletions

View File

@ -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;