longyvfengyun
2023-11-15 f7d2d315ac58565cd371d90befc08b7962320b75
1
2
3
4
5
6
7
8
9
10
11
12
import axios from "@/assets/js/axios";
 
/**
 * 获取汽车的位置信息
 * @return {Promise<AxiosResponse<any>> | *}
 */
export const searchCarPos = ()=>{
  return axios({
    method: "GET",
    url: "/monitor/boxGPS/select",
  });
}