You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
564 B
TypeScript

export const deviceStatusEnums : Record<string,any> = {
'allStatus': {
miniName: '全部',
value: '0',
color: ''
},
'onlineStatus': {
miniName: '在线',
value: '1',
color: 'success'
},
'outlineStatus': {
miniName: '离线',
value: '2',
color: 'default'
},
'processingStatus': {
miniName: '运行中',
value: '3',
color: 'warning'
},
'errorStatus': {
miniName: '故障',
value: '4',
color: 'error'
}
}