devType.js 323 B

12345678910111213
  1. export const connectStateMap = {
  2. 0: {text:'未连接',color:"red"},
  3. 1: {text:'扫描中',color:"greenYellow"},
  4. 2: {text:'连接中',color:"#d8e84d"},
  5. 3: {text:'已连接',color:"#00ff00"}
  6. }
  7. export const connectStateTypes = {
  8. unConnect: 0,
  9. scaning: 1,
  10. connecting: 2,
  11. connected: 3
  12. }