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
| })
| }
|
|