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
64
65
66
67
68
69
70
71
| import http from '@/http/api.js'
|
| //获取报事数量统计
| export const getReportingCount = (data) => {
| return http.request({
| url: '/blade-task/task/countNumber',
| method: 'POST',
| data: data
| })
| }
|
| //添加旅馆安全报事
| export const saveHotelReporting = (data) => {
| return http.request({
| url: '/blade-taskHotelReporting/taskHotelReporting/save',
| method: 'POST',
| data: data
| })
| }
|
| //获取旅馆安报事列表
| export const getHotelReportingList = (params) => {
| return http.request({
| url: '/blade-taskHotelReporting/taskHotelReporting/page',
| method: 'get',
| params: {
| ...params
| }
| })
| }
|
| //获取取保候审报事列表
| export const geteBailReportingList = (params) => {
| return http.request({
| url: '/blade-taskBailReportingEvent/taskBailReportingEvent/page',
| method: 'get',
| params: {
| ...params
| }
| })
| }
|
| //获取打金店报事列表
| export const getLabelReportingList = (params) => {
| return http.request({
| url: '/blade-taskLabelReportingEvent/taskLabelReportingEvent/page',
| method: 'get',
| params: {
| ...params
| }
| })
| }
|
| //添加取保候审报事
| export const saveBailReporting = (data) => {
| return http.request({
| url: '/blade-taskBailReportingEvent/taskBailReportingEvent/save',
| method: 'POST',
| data: data
| })
| }
|
|
| //添加打金店、二手车交易、二手手机维修报事
| export const saveLabelReporting = (data) => {
| return http.request({
| url: '/blade-taskLabelReportingEvent/taskLabelReportingEvent/save',
| method: 'POST',
| data: data
| })
| }
|
|