车辆对接

This commit is contained in:
wangshiming
2022-01-07 11:13:06 +08:00
parent 90e53e568c
commit 11c5ab47b8

View File

@ -165,6 +165,7 @@ export class FreightComponentsEnterpriseAuditComponent implements OnInit {
type: 'badge', type: 'badge',
badge: { badge: {
10: { text: '待审核', color: 'processing' }, 10: { text: '待审核', color: 'processing' },
15: { text: '已撤销', color: 'processing' },
20: { text: '已成功', color: 'success' }, 20: { text: '已成功', color: 'success' },
30: { text: '审核失败', color: 'warning' } 30: { text: '审核失败', color: 'warning' }
} }
@ -265,6 +266,7 @@ export class FreightComponentsEnterpriseAuditComponent implements OnInit {
enum: [ enum: [
{ label: '全部', value: '' }, { label: '全部', value: '' },
{ label: '待审核', value: 10 }, { label: '待审核', value: 10 },
{ label: '已撤销', value: 15 },
{ label: '已成功', value: 20 }, { label: '已成功', value: 20 },
{ label: '审核失败', value: 30 } { label: '审核失败', value: 30 }
], ],