longyvfengyun
2023-12-25 d8d792a6842832e8f6af6604274c438b25053afe
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
import axios from 'axios'
 
export default {
  /**
   * 查询头部信息
   * 无参
   */
  searchHomePage() {
    return axios({
      method: 'post',
      url: 'HomePageAction!getDataMap',
      data: null
    });
  },
  /**
   * 查询落后单体总数
   * 无参
   */
  searchLowMonNum() {
    return axios({
      method: 'post',
      url: 'BadBatt_monAction!searchNums',
      data: null
    });
  },
  /**
   * 查询机房停电总数
   * 无参
   */
  searchPowerOffNum() {
    return axios({
      method: 'post',
      url: 'BattPower_offAction!serchPowerOff',
      data: null
    });
  },
  /**
   * 查询设备实时告警总数
   * 无参
   */
  searchDevAlarmNum() {
    return axios({
      method: 'post',
      url: 'Batt_devalarm_dataAction!searchNums',
      data: null
    });
  },
  /**
   * 查询未放电的计划总数
   * 无参
   */
  searchNotComplanNum() {
    return axios({
      method: 'post',
      url: 'BattDischarge_planAction!searchNums',
      data: null
    });
  },
  /**
   * 查询电池告警总数
   * 无参
   */
  searchAlmNum() {
    return axios({
      method: 'post',
      url: 'Battalarm_dataAction!serchRealTime',
      data: null
    });
  },
  /**
   * 查询服务器信息
   * 无参
   */
  searchServerState() {
    return axios({
      method: 'post',
      url: 'Server_stateAction_action_searchAll',
      data: null
    });
  },
  // 查询正在核容测试的设备
  search61850Nuclear() {
    return axios({
      method: 'post',
      url: 'Fbs9100_stateAction_action_seach6185Nuclear_cap',
      data: null
    });
  },
  // 查询电源告警个数
  searchPowerWarnNum() {
    return axios({
      method: 'post',
      url: 'PowerAlarmAction_power_getAlarmNum',
      data: null
    });
  },
  // 查询紧急告警个数
  getSeriousAlarmCount() {
    return axios({
      method: 'post',
      url: 'PowerAlarmAction_power_getSeriousAlarmCount',
      data: null
    });
  },
  // 头部服务器信息
  serchServerManageInfo() {
    return axios({
      method: 'post',
      url: 'Server_stateAction_action_serchServerManageInfo',
      data: null
    });
  },
}