common.data.ts 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. //顶部区域数据
  2. export const topList = [
  3. {
  4. id: 0,
  5. label: '最高温度(°C)',
  6. imgSrc: true,
  7. value: '--',
  8. text: '',
  9. },
  10. {
  11. id: 1,
  12. label: '最低温度(°C)',
  13. imgSrc: true,
  14. value: '--',
  15. text: '',
  16. },
  17. {
  18. id: 2,
  19. label: '平均温度(°C)',
  20. imgSrc: true,
  21. value: '--',
  22. text: '',
  23. },
  24. { id: 3, imgSrc: false, label: '预警等级', value: '正常', text: '' },
  25. ];
  26. //外因火灾-烟雾传感器table列
  27. export const columnsSmoke = [
  28. { rowIndex: 1, dataIndex: 'strinstallpos', title: '名称', type: '1', align: 'center' },
  29. { rowIndex: 2, dataIndex: 'value', title: '值', type: '1', align: 'center' },
  30. { rowIndex: 4, dataIndex: 'shuju_time', title: '时间', type: '1', align: 'center' },
  31. ];
  32. //外因火灾-g光纤table列
  33. export const columnsFiber = [
  34. { rowIndex: 1, dataIndex: 'strinstallpos', title: '名称', type: '1', align: 'center' },
  35. { rowIndex: 2, dataIndex: 'value', title: '温度(℃)', type: '1', align: 'center' },
  36. { rowIndex: 3, dataIndex: 'readTime', title: '时间', type: '1', align: 'center' },
  37. ];