diff --git a/src/app/routes/usercenter/components/driver/driver.component.ts b/src/app/routes/usercenter/components/driver/driver.component.ts index 466123de..1c073f7c 100644 --- a/src/app/routes/usercenter/components/driver/driver.component.ts +++ b/src/app/routes/usercenter/components/driver/driver.component.ts @@ -218,6 +218,7 @@ export class UserCenterComponentsDriverComponent implements OnInit { index: 'identityStatus', type: 'badge', badge: { + '-1': { text: '未提交', color: 'default' }, 0: { text: '待审核', color: 'default' }, 1: { text: '通过', color: 'success' }, 2: { text: '驳回', color: 'warning' } @@ -229,6 +230,7 @@ export class UserCenterComponentsDriverComponent implements OnInit { index: 'driverLicenseStatus', type: 'badge', badge: { + '-1': { text: '未提交', color: 'default' }, 10: { text: '待审核', color: 'default' }, 20: { text: '审核通过', color: 'success' }, 30: { text: '驳回', color: 'warning' }, @@ -241,6 +243,7 @@ export class UserCenterComponentsDriverComponent implements OnInit { index: 'practiceSenioritLicenseStatus', type: 'badge', badge: { + '-1': { text: '未提交', color: 'default' }, 10: { text: '待审核', color: 'default' }, 20: { text: '审核通过', color: 'success' }, 30: { text: '驳回', color: 'warning' },