GULIMMO
2023-11-09 b51b26b1b6ed71f2a1c2f440f4a374c578f9ed8a
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
import http from '@/http/api.js'
 
//添加旅馆安全报事
export const saveHotelReporting = (data) => {
    return http.request({
        url: '/blade-taskHotelReporting/taskHotelReporting/save',
        method: 'POST',
        data: data
    })
}
 
//添加取保候审报事
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
    })
}