zhouwenxuan
2023-12-15 277d6652893fcc10fb6827b62ef16fe2910a525c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import {service} from '../common/request.js';
 
export function getResponse(data) {
  return service({
        url: '/app/warninfo/person/response',
        method: 'POST',
        data
    })
}
 
export function getDetail(data) {
  return service({
        url: '/app/warninfo/detailsByWarnLogId',
        method: 'GET',
        data
    })
}