安琪酵母(西藏)益生菌信息采集中心智能实验室
longyvfengyun
2023-08-24 91a371d14923904bdf88dd22995f1470eac3f809
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
import {reactive} from "vue";
 
const runMonitorModule = ()=>{
  const runMonitorData = reactive([
    {
      key: "airTemp",
      label: "空调温度",
      value: 0,
      unit: "℃"
    },
    {
      key: "airHumid",
      label: "空调湿度",
      value: 0,
      unit: "%"
    },
    {
      key: "commCount",
      label: "通信计数",
      value: 0,
      unit: " "
    },
    {
      key: "commErrCount",
      label: "错误计数",
      value: 0,
      unit: " "
    },
    {
      key: "recordTime",
      label: "记录日期",
      value: 0,
      unit: " "
    }
  ]);
 
  // 设置空调运行参数
  const setRunMonitorData = (data)=>{
    for(let i=0; i<runMonitorData.length; i++) {
      let item = runMonitorData[i];
      item.value = data[item.key]!==undefined?data[item.key]:0;
    }
 
  }
 
  return {runMonitorData, setRunMonitorData};
};
 
export default runMonitorModule;