陶杰
2024-11-06 49b3c0e632b8bcbfed7cf72897a39240323b2809
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
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
    }
  })
}