linwe
2024-08-08 3c738f4fe2762bba8087e5a22fc0dc06560eab0e
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
import http from '@/http/api.js'
 
// 查询警情处理记录
export const getPoliceAlarmRecords = (params) => {
    return http.request({
        url: '/blade-policeAlarmRecords/policeAlarmRecords/page',
        method: 'get',
        params: params
    })
}
 
// 查询警情处理记录
export const getPoliceDetail = (params) => {
    return http.request({
        url: '/blade-policeAlarmRecords/policeAlarmRecords/detail',
        method: 'get',
        params: params
    })
}
 
// 查询警情处理记录
export const updateInfo = (data) => {
    return http.request({
        url: '/blade-policeAlarmRecords/policeAlarmRecords/update',
        method: 'post',
        data: data
    })
}
 
// 重点人员记录
export const gethouseholdPage = (params) => {
    return http.request({
        url: '/blade-household/household/page',
        method: 'get',
        params: params
    })
}
 
// 重点人员详情
export const gethouseholdDetail = (params) => {
    return http.request({
        url: '/blade-household/household/getDetail',
        method: 'get',
        params: params
    })
}