export const DEVICE_STATUS = [ { value: 'ISOLATION', label: '隔离', color: '#762CE5', }, { value: 'ALARM', label: '预警', color: '#E52C3E', }, { value: 'DANGER', label: '隐患', color: '#E57022', }, { value: 'FAULT', label: '故障', color: '#F2A516', }, { value: 'NORMAL', label: '正常', color: '#1DCCBB', }, { value: 'DISCONNECT', label: '失联', color: '#BFBFBF', }, ]; export const DEVICE_NETWORK_STATUS = [ { value: 0, label: '离线', color: '#BFBFBF', }, { value: 1, label: '在线', color: '#2B6DE5', }, ];