WXL
6 天以前 631c8f37b449b09d19345b76400a39abdb7800f6
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
import request from '@/utils/request'
 
// 上报案例新增
export function transportAdd(data) {
  return request({
    url: '/project/transport/add',
    method: 'post',
    data: data
  })
}
 
// 上报案例修改
export function transportEdit(data) {
  return request({
    url: '/project/transport/edit',
    method: 'post',
    data: data
  })
}
// 上报案例列表
export function transportList(data) {
  return request({
    url: '/project/transport/list',
    method: 'post',
    data: data
  })
}
 
// 案例详情
export function transportInfo(id) {
  return request({
    url: '/project/transport/getInfo/' + id,
    method: 'get'
  })
}
 
// 删除
export function transportDel(id) {
  return request({
    url: '/project/transport/remove/' + id,
    method: 'get'
  })
}