heimawl
2023-06-02 4de052a45e3b18f4bb3316079f5d4bcaae04e30b
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
import request from '@/utils/request'
 
// 查询服务方案库列表
export function listSchemelibrary(query) {
  return request({
    url: '/smartor/schemelibrary/list',
    method: 'get',
    params: query
  })
}
 
// 查询服务方案库详细
export function getSchemelibrary(id) {
  return request({
    url: '/smartor/schemelibrary/' + id,
    method: 'get'
  })
}
 
// 新增服务方案库
export function addSchemelibrary(data) {
  return request({
    url: '/smartor/schemelibrary',
    method: 'post',
    data: data
  })
}
 
// 修改服务方案库
export function updateSchemelibrary(data) {
  return request({
    url: '/smartor/schemelibrary',
    method: 'put',
    data: data
  })
}
 
// 删除服务方案库
export function delSchemelibrary(id) {
  return request({
    url: '/smartor/schemelibrary/' + id,
    method: 'delete'
  })
}