路由的写法
{ path: 'driver/archive/job-history/:driverIDNumber/:supplierId', component: DriverArchiveJobHistoryComponent },
跳转的时候要在参数中间加上“/”
'/app/driver/archive/deduction-history/' + this.driverIDNumber + '/' + result.supplierId
html中的使用方法
[routerLink]="[ '/app/driver/deduction/blacklist/detail/', driverIDNumber, '/', supplierId ]"