This commit is contained in:
wangshiming
2022-02-28 14:19:51 +08:00
parent 74e223270e
commit 03b1d6da82
2 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@
* @Author : Shiming * @Author : Shiming
* @Date : 2022-01-12 13:35:56 * @Date : 2022-01-12 13:35:56
* @LastEditors : Shiming * @LastEditors : Shiming
* @LastEditTime : 2022-02-09 17:41:57 * @LastEditTime : 2022-02-28 14:17:40
* @FilePath : \\tms-obc-web\\src\\app\\routes\\usercenter\\components\\driver\\driver.component.html * @FilePath : \\tms-obc-web\\src\\app\\routes\\usercenter\\components\\driver\\driver.component.html
* Copyright (C) 2022 huzhenhong. All rights reserved. * Copyright (C) 2022 huzhenhong. All rights reserved.
--> -->
@ -45,7 +45,7 @@
<a (click)="addPromoter(item)" acl [acl-ability]="['USERCENTER-DRIVER-LIST-promoter']">{{ item.promotersTelephone || '添加' }}</a> <a (click)="addPromoter(item)" acl [acl-ability]="['USERCENTER-DRIVER-LIST-promoter']">{{ item.promotersTelephone || '添加' }}</a>
</ng-template> </ng-template>
<ng-template st-row="carNo" let-item let-index="index"> <ng-template st-row="carNo" let-item let-index="index">
<a (click)="addPromoter(item)" >{{ item.carNo }}</a> <a (click)="viewCar(item)" >{{ item?.carNo }}</a>
</ng-template> </ng-template>
</st> </st>
</nz-card> </nz-card>

View File

@ -334,6 +334,6 @@ export class UserCenterComponentsDriverComponent implements OnInit {
]; ];
} }
viewCar(item: any) { viewCar(item: any) {
this.router.navigate(['/vehicle/list/detail/' + item.id], { queryParams: { carId: item.carId } }); this.router.navigate(['/vehicle/list/detail/' + item.carId] );
} }
} }