安琪酵母(西藏)益生菌信息采集中心智能实验室
huodongwei
2023-06-27 9631e6bee3deb1d34c158ca9d1274e6edad0ddac
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
import {reactive} from "vue";
 
const runMonitorModule = ()=>{
  const runMonitorData = reactive([
    {
      label: "压缩机运行时间",
      value: 0,
      unit: "H"
    },
    {
      label: "加热需求",
      value: 0,
      unit: "%"
    },
    {
      label: "制冷需求",
      value: 0,
      unit: "%"
    },
    {
      label: "除湿需求",
      value: 0,
      unit: "%"
    },
    {
      label: "回风温度",
      value: 0,
      unit: "℃"
    },
    {
      label: "回风湿度",
      value: 0,
      unit: "%"
    },
  ]);
 
  return {runMonitorData};
};
 
export default runMonitorModule;