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
45
46
47
48
|
|
| import request from '@/router/axios'
| //案件调查终结审批表管理接口
|
| // 保存
| export function saveObj(obj) {
| return request({
| url: `/process/examinationinvestigationtermination`,
| method: 'post',
| data: obj
| })
| }
|
| // 删除
| export function delObj(obj) {
| return request({
| url: `/examinationInvestigationTermination/delByIds`,
| method: 'post',
| data: obj
| })
| }
|
| // 查询list
| export function getList(query) {
| return request({
| url: `/examinationInvestigationTermination/getByPage`,
| method: 'get',
| params: query
| })
| }
|
| //查询一个
| export function getObj(id) {
| return request({
| url: `/process/examinationinvestigationtermination/get/${id}`,
| method: 'get',
| })
| }
|
| // 查询所有
| export function findAll(query) {
| return request({
| url: `/examinationInvestigationTermination/getAll`,
| method: 'get',
| params: query
| })
| }
|
|