admin
2024-02-20 435bc751b10bf5868182219bc4c0851ab7674cd7
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
import request from '@/utils/request'
 
// 查询设备测点列表
export function listCd(query) {
  return request({
    url: '/dl/cd/list',
    method: 'get',
    params: query
  })
}
 
// 查询设备测点详细
export function getCd(id) {
  return request({
    url: '/dl/cd/' + id,
    method: 'get'
  })
}
 
// 发送数据到上级
export function toInfoSJ() {
  return request({
    url: '/dl/cd/faSong',
    method: 'get'
  })
}
 
// 新增设备测点
export function addCd(data) {
  return request({
    url: '/dl/cd',
    method: 'post',
    data: data
  })
}
 
// 修改设备测点
export function updateCd(data) {
  return request({
    url: '/dl/cd',
    method: 'put',
    data: data
  })
}
 
// 删除设备测点
export function delCd(id) {
  return request({
    url: '/dl/cd/' + id,
    method: 'delete'
  })
}