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
| import request from "@/router/axios.js"
|
| /**
| * 获取从业人员列表
| * @returns
| */
| export const getList = (params) => {
| return request({
| url: "/api/blade-policeAlarmRecords/policeAlarmRecords/page",
| method: "get",
| params
| })
| }
|
| /**
| * 报警记录统计
| * @returns
| */
| export const getStatistic = (params) => {
| return request({
| url: "/api/blade-policeAlarmRecords/policeAlarmRecords/getStatistic",
| method: "get",
| params
| })
| }
|
| /**
| * 获取从业人员有前科数量
| * @returns
| */
| export const getCountByType = (params) => {
| return request({
| url: "/api/blade-policeAlarmRecords/policeAlarmRecords/countByType",
| method: "get",
| params
| })
| }
|
| /**
| * 获取从业人员详情
| * @returns
| */
| export const getDetail = (params) => {
| return request({
| url: "/api/blade-policeAlarmRecords/policeAlarmRecords/getDetail",
| method: "get",
| params
| })
| }
|
| /**
| * 获取证件类型字典
| * @returns
| */
| export const getApplyAlarmType = () => {
| return request({
| url: "/api/blade-system/dict-biz/tree?code=applyAlarmType",
| method: "get",
| })
| }
|
|