device.data.ts 733 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. export const chartsColumns = (deviceType) => {
  2. if (deviceType === '') {
  3. return [];
  4. }
  5. };
  6. export const locationList = [
  7. {
  8. title: '风门',
  9. deviceType: 'gate',
  10. isVisible: 0,
  11. },
  12. {
  13. title: '风窗',
  14. deviceType: 'gate1',
  15. isVisible: 0,
  16. },
  17. {
  18. title: '测风装置',
  19. deviceType: 'gate2',
  20. isVisible: 0,
  21. },
  22. {
  23. title: '传感器',
  24. deviceType: 'gate3',
  25. isVisible: 0,
  26. },
  27. {
  28. title: '局部风机',
  29. deviceType: 'gate4',
  30. isVisible: 0,
  31. },
  32. {
  33. title: '主风机',
  34. deviceType: 'gate5',
  35. isVisible: 0,
  36. },
  37. {
  38. title: '风筒',
  39. deviceType: 'gate6',
  40. isVisible: 0,
  41. },
  42. {
  43. title: '密闭墙',
  44. deviceType: 'gate7',
  45. isVisible: 0,
  46. },
  47. ];