123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- //车辆类型
- export const obuStatus = [{
- id: 0,
- title: '未安装'
- },
- {
- id: 1,
- title: '正常'
- },
- {
- id: 2,
- title: '有签挂起'
- },
- {
- id: 3,
- title: '无签挂起'
- },
- {
- id: 4,
- title: '有签注销'
- },
- {
- id: 5,
- title: '无签注销'
- },
- {
- id: 6,
- title: '标签挂失'
- },
- {
- id: 7,
- title: '已过户'
- },
- {
- id: 8,
- title: '维修中'
- },
- {
- id: 9,
- title: '发行申请'
-
- },
- {
- id: 10,
- title: '车型不符'
- },
- {
- id: 11,
- title: '已发行'
- },
- {
- id: 99,
- title: '已删除'
- }
- ];
- //获取车辆类型
- export const getObuStatus = (id) => {
- let types = obuStatus.filter(item => item.id == id);
- return types[0]?.title
- }
|