dashboard
repositories
filestore
activity
search
login
jagzwxm
/
ja_web
吉安感知网项目-前端
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
feat: 完成场景
罗广辉
2026-01-13
f7579acbfe2cca2aacf2a5a460fccf8fc5bb5406
[jagzwxm/ja_web.git]
/
packages
/
constants
/
fwDevice.js
1
2
3
4
5
6
7
8
9
// 设备状态
export const DEVICE_STATUS = {
0: '在线',
1: '离线',
2: '故障',
3: '报废',
}
export const DEVICE_STATUS_LIST = Object.keys(DEVICE_STATUS).map(key => ({ value: key, label: DEVICE_STATUS[key] }))