zhongrj
2024-03-27 cc1c0a396698648256c350f6f0fe2cb2f0b02c7e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import request from '@/router/axios';
 
export const getGunList = (param) => {
  return request({
    url: '/api/gun/page',
    method: 'get',
    params: param
  })
}
 
export const getTrack = (param) => {
  return request({
    url: '/api/investigate/gun',
    method: 'get',
    params: param
  })
}