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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
| import request from "@/router/axios"
|
| // 档案管理列表
| export const getDAGLList = (current, size, params) => {
| return request({
| url: "/api/blade-place/place/ninePage",
| method: "get",
| params: {
| current,
| size,
| ...params
| },
| })
| }
|
| // 整改情况
| export const getZGQKList = (current, size, params) => {
| return request({
| url: "/api/blade-taskPlaceRectification/taskPlaceRectification/getTaskPlaceRectificationList",
| method: "get",
| params: {
| current,
| size,
| ...params
| },
| })
| }
|
| // 隐患统计
| export const getYHTJList = (data) => {
| return request({
| url: "/api/blade-taskPlaceRectification/taskPlaceRectification/rectificationStatistics",
| method: "post",
| data
| })
| }
|
| // 问题类型字典
| export const getPatrolGroupTree = (params) => {
| return request({
| url: "/api/patrol/patrolGroup/getPatrolGroupTree",
| method: "get",
| params
| })
| }
|
| // 九小类型字典
| export const getDictBizTree = (params) => {
| return request({
| url: "/api/blade-system/dict-biz/tree",
| method: "get",
| params
| })
| }
|
| // 民警审核接口
| export const applyRectification = (data) => {
| return request({
| url: "/api/blade-taskPlaceRectification/taskPlaceRectification/applyRectification",
| method: "post",
| data
| })
| }
|
|