xiangpei
2024-08-15 e24b649d64849e87f79303f3f2284291ee3507af
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
import axios from '@/utils/request'
 
// 获取平台运行监控分页
export const getPlatforms = (params) => {
  return axios({
    url: "/platform/page",
    method: "GET",
    params: params
  })
}
 
// 获取平台运行监控列表
export const getPlatformList = () => {
  return axios({
    url: "/platform/list",
    method: "GET"
  })
}
 
// 通过id获取平台运行监控
export const getPlatformById = (params) => {
  return axios({
    url: "/platform/" + params,
    method: "GET"
  })
}
 
// 通过id删除平台运行监控
export const deletePlatformById = (params) => {
  return axios({
    url: "/platform/" + params,
    method: "DELETE"
  })
}
 
// 批量删除平台运行监控
export const deletePlatformByIds = (params) => {
  return axios({
    url: "/platform/batch",
    method: "DELETE",
    data: params
  })
}
 
// 修改平台运行监控
export const editPlatform = (params) => {
  return axios({
    url: "/platform",
    method: "PUT",
    data: params
  })
}
 
// 添加平台运行监控
export const addPlatform = (params) => {
  return axios({
    url: "/platform",
    method: "POST",
    data: params
  })
}