schangxiang@126.com
2024-08-16 65bd2dc1d4c1fb136af853c7ede93a338431be29
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
const origin = [
    { 'month': '2023年4月', 'alarmNum': 14, 'duration': 5.2, 'statusRatiio': { '手动': 15, '自动': 100, '运行': 52, '停滞': 33 } },
    { 'month': '2023年5月', 'alarmNum': 15, 'duration': 3.2, 'statusRatiio': { '手动': 25, '自动': 50, '运行': 52, '停滞': 33 } },
    { 'month': '2023年6月', 'alarmNum': 17, 'duration': 1.2, 'statusRatiio': { '手动': 35, '自动': 90, '运行': 62, '停滞': 38 } },
    { 'month': '2023年7月', 'alarmNum': 23, 'duration': 6.4, 'statusRatiio': { '手动': 23, '自动': 87, '运行': 25, '停滞': 9 } },
    { 'month': '2023年8月', 'alarmNum': 26, 'duration': 3.5, 'statusRatiio': { '手动': 34, '自动': 100, '运行': 72, '停滞': 13 } },
    { 'month': '2023年9月', 'alarmNum': 24, 'duration': 2.7, 'statusRatiio': { '手动': 15, '自动': 100, '运行': 52, '停滞': 33 } },
    { 'month': '2023年10月', 'alarmNum': 27, 'duration': 4.7, 'statusRatiio': { '手动': 12, '自动': 80, '运行': 32, '停滞': 23 } },
    { 'month': '2023年11月', 'alarmNum': 23.5, 'duration': 1.0, 'statusRatiio': { '手动': 15, '自动': 100, '运行': 97, '停滞': 3 } },
    { 'month': '2023年12月', 'alarmNum': 19, 'duration': 5.4, 'statusRatiio': { '手动': 14, '自动': 99, '运行': 62, '停滞': 31 } },
    { 'month': '2024年1月', 'alarmNum': 22, 'duration': 3.8, 'statusRatiio': { '手动': 22, '自动': 85, '运行': 42, '停滞': 27 } },
    { 'month': '2024年2月', 'alarmNum': 14.2, 'duration': 2.9, 'statusRatiio': { '手动': 1, '自动': 100, '运行': 22, '停滞': 15 } },
    { 'month': '2024年3月', 'alarmNum': 15, 'duration': 4.9, 'statusRatiio': { '手动': 20, '自动': 66, '运行': 43, '停滞': 22 } }
]
 
const originDate = [
    { 'month': '2023年3月', 'alarmNum': 14, 'duration': 5.2, 'statusRatiio': { '手动': 23, '自动': 87, '运行': 25, '停滞': 9 } },
    { 'month': '2023年4月', 'alarmNum': 15, 'duration': 3.2, 'statusRatiio': { '手动': 34, '自动': 100, '运行': 72, '停滞': 13 } },
    { 'month': '2023年5月', 'alarmNum': 17, 'duration': 1.2, 'statusRatiio': { '手动': 15, '自动': 100, '运行': 52, '停滞': 33 } },
    { 'month': '2023年6月', 'alarmNum': 23, 'duration': 6.4, 'statusRatiio': { '手动': 12, '自动': 80, '运行': 32, '停滞': 23 } },
    { 'month': '2023年7月', 'alarmNum': 26, 'duration': 3.5, 'statusRatiio': { '手动': 22, '自动': 85, '运行': 42, '停滞': 27 } },
    { 'month': '2023年8月', 'alarmNum': 0, 'duration': 2.7, 'statusRatiio': { '手动': 1, '自动': 100, '运行': 22, '停滞': 15 } },
    { 'month': '2023年9月', 'alarmNum': 27, 'duration': 4.7, 'statusRatiio': { '手动': 20, '自动': 66, '运行': 43, '停滞': 22 } }
]
 
// option={equipmentId:'',searchBeginTime:'',searchEndTime:''}
export const getEquipmentStatus = (option) => {
    const obj = {
        code: 200
    }
    if (!option.searchBeginTime && !option.searchEndTime && option.equipmentId == 'EOP05') {
        obj.data = origin
    } else {
        obj.data = originDate
    }
    return obj
}