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
559 B
TypeScript
30 lines
559 B
TypeScript
2 years ago
|
|
||
|
|
||
|
|
||
|
export const deviceStatusEnums : Record<string,any> = {
|
||
|
'allStatus': {
|
||
|
miniName: '全部',
|
||
|
value: '',
|
||
|
color: ''
|
||
|
},
|
||
|
'onlineStatus': {
|
||
|
miniName: '在线',
|
||
|
value: '',
|
||
|
color: 'success'
|
||
|
},
|
||
|
'outlineStatus': {
|
||
|
miniName: '离线',
|
||
|
value: '',
|
||
|
color: 'default'
|
||
|
},
|
||
|
'processingStatus': {
|
||
|
miniName: '运行中',
|
||
|
value: '',
|
||
|
color: 'warning'
|
||
|
},
|
||
|
'errorStatus': {
|
||
|
miniName: '故障',
|
||
|
value: '',
|
||
|
color: 'error'
|
||
|
}
|
||
|
}
|