1234567891011121314151617181920 |
- import http from "@/utils/request.js";
- // 获取地图中心点
- export const getMapCenterPoint_Api = () => http.get('/h5/biz/map/getCenterPoint')
- // 获取地图列表
- export const getMapList_Api = (params) => http.get('/h5/biz/map/list', { params: params })
- // 获取地图类型
- export const getMaptypeList_Api = (params) => http.get('/h5/biz/maptype/list', { params: params })
- // 获取地图点位服务
- export const getMapMatterList_Api = (params) => http.get('/h5/biz/map/matterList', { params: params })
- // 获取地图点位服务
- export const getMapMatterListH6_Api = (params) => http.get('/h6/biz/map/matterList', { params: params })
- // pv uv新增
- export const getVisituvpv_Api = (data) => http.post('/h5/biz/visituvpv/add', data)
|