唐耀东
2022-05-12 35668474b65be39a277d7cb53693022b482e17ca
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 listConstructionBatch(query) {
  return request({
    url: '/oa/constructionBatch/list',
    method: 'get',
    params: query
  })
}
 
// 查询施工批次详细
export function getConstructionBatch(id) {
  return request({
    url: '/oa/constructionBatch/' + id,
    method: 'get'
  })
}
 
// 新增施工批次
export function addConstructionBatch(data) {
  return request({
    url: '/oa/constructionBatch',
    method: 'post',
    data: data
  })
}
 
// 修改施工批次
export function updateConstructionBatch(data) {
  return request({
    url: '/oa/constructionBatch',
    method: 'put',
    data: data
  })
}
 
// 删除施工批次
export function delConstructionBatch(id) {
  return request({
    url: '/oa/constructionBatch/' + id,
    method: 'delete'
  })
}