cloudroam
2024-11-22 baef0375875c22f7803aa41a28c7f569e055a798
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
import request from '@/utils/request-api'
 
export function getAreaList() {
  return request({
    url: '/api/services/app/SwitchDevice/GetSwitchDeviceByAreaStatic',
    method: 'get',
    params: {
 
    }
  })
}
export function apiSearchAreaByIp(ip) {
  return request({
    url: '/api/services/app/SwitchDevice/GetAreaByIP',
    method: 'get',
    params: {
      ip
    }
  })
}
 
export function getAreaTjData(code) {
  return request({
    url: '/api/services/app/SwitchDevice/GetSwitchDeviceByAreaStatic',
    method: 'get',
    params: {
 
    }
  })
}
 
export function getAreaServeInfo(code, equdata) {
  return request({
    url: '/api/services/app/SwitchDevice/GetSwitchCabinetInfo',
    method: 'get',
    params: {
      // 'cabinetCode': code,
      // encodeURIComponent
      'cabinetCode': (equdata.cabinetName),
      'areaCode': code
    }
  })
}
 
 
// 获取接口网络报警信
export function getFaultInfo(code) {
  return request({
    url: '/api/services/app/SwitchDevice/GetFaultInfo',
    method: 'get',
    params: {
      'cabinetCode': code
    }
  })
}
 
 
export function getDeviceList(code, switchName = '') {
  return request({
    url: '/api/services/app/SwitchDevice/GetSwitchDetialInfo',
    method: 'get',
    params: {
      'areaCode': code,
      'switchName': switchName || undefined
    }
  })
}
export function getSwitchStatusStatic() {
  return request({
    url: '/api/services/app/SwitchDevice/GetSwitchStatusStatic',
    method: 'get',
    params: {
    }
  })
}
export function getSwitchInfoStatic() {
  return request({
    url: '/api/services/app/SwitchDevice/GetLackSwitchInfo',
    method: 'get',
    params: {
    }
  })
}
 
 
 
 
export function addDeviceInfo(dto) {
  return request({
    url: '/api/services/app/SwitchDevice/OperaSwitch',
    method: 'post',
    data: {
      ...dto
    }
  })
}
export function updateDevicePosition(dto) {
  // dto = {
  //   "id": 0,
  //   "operateType": 0,
  //   "operateUserId": "string",
  //   "operateTime": "string",
  //   "moveBeforeX": "string",
  //   "moveBeforeY": "string",
  //   "currentX": "string",
  //   "currentY": "string"
  // }
  return request({
    url: '/api/services/app/SwitchDevice/OperaSwitch',
    method: 'post',
    data: {
      ...dto
    }
  })
}
export function delport(dto) {
  // dto = {
  //   "id": 0,
  //   "operateType": 4,
  //   "networkPort":""
  // }
  return request({
    url: '/api/services/app/SwitchDevice/OperaSwitch',
    method: 'post',
    data: {
      ...dto
    }
  })
}
export function statusPort(dto) {
  // dto = {
  //   "id": 0,
  //   "operateType": 5,
  // }
  return request({
    url: '/api/services/app/SwitchDevice/OperaSwitch',
    method: 'post',
    data: {
      ...dto
    }
  })
}
 
export function getBridgeInfos(code) {
  return request({
    url: '/api/services/app/SwitchDevice/GetAreaPositionInfo',
    method: 'get',
    params: {
      'areaCode': code
    }
  })
}
 
export function getSwitchCabinetInfo() {
  return request({
    url: '/api/services/app/SwitchDevice/GetSwitchCabinetInfo',
    method: 'get',
    params: {
      
    }
  })
}
 
/**
 * 
 * @returns 获取所有交换机柜列表
 */
export function getSwitchBord() {
  return request({
    url: '/api/services/app/SwitchDevice/GetSwitchBord',
    method: 'get',
    params: {
      
    }
  })
}
 
/**
 * 获取所有区域列表
 */
export function getAreaCode() {
  return request({
    url: '/api/services/app/SwitchDevice/GetAreaCode',
    method: 'get',
    params: {
      
    }
  })
}
 
 
export function AssignSwitch(dto) {
  return request({
    url: '/api/services/app/SwitchDevice/AssignSwitch',
    method: 'post',
    data: {
      ...dto
    }
  })
}