峰峰执法平台简易案件程序板块 pad端
yang
2022-10-17 4107256a8d1fa9a2db0969122bfc760994b12421
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
 
 
import request from '@/router/axios'
//实施行政强制措施决定书管理接口
 
// // 保存
// export function saveObj(obj) {
//   return request({
//     url: `/process/finalreport`,
//     method: 'post',
//     data: obj
//   })
// }
//
// //查询一个
// export function getObj(id) {
//   return request({
//     url: `/process/finalreport/get/${id}`,
//     method: 'get'
//   })
// }
 
//实施行政强制措施现场笔录
//查询接口
export function getObj(id) {
  return request({
    url: `/process/forcecaserecord/get/${id}`,
    method: 'get'
  })
}
 
//保存接口
export function saveObj(obj) {
  return request({
    url: '/process/forcecaserecord',
    method: 'post',
    data: obj
  })
}