|
|
@@ -5,28 +5,43 @@ 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 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 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 getMapMatterList_Api = (params) => http.get('/h5/biz/map/matterList', {
|
|
|
+ params: params
|
|
|
+})
|
|
|
// 获取地图点位服务
|
|
|
export const getMapMatterListH6_Api = (params) =>
|
|
|
- http.get("/h6/biz/map/matterList", { params: params });
|
|
|
+ http.get("/h6/biz/map/matterList", {
|
|
|
+ params: params
|
|
|
+ });
|
|
|
|
|
|
// 获取地图广告服务
|
|
|
export const getMapAdList_Api = (params) =>
|
|
|
- http.get("/h5/biz/ad/list", { params: params });
|
|
|
+ http.get("/h5/biz/ad/list", {
|
|
|
+ params: params
|
|
|
+ });
|
|
|
|
|
|
//获取广告详情
|
|
|
export const getMapAdDetail_Api = (params) =>
|
|
|
- http.get("/h5/biz/ad/detail", { params: params });
|
|
|
+ http.get("/h5/biz/ad/detail", {
|
|
|
+ params: params
|
|
|
+ });
|
|
|
//根据事项ud获取广告绑定的事项详情
|
|
|
export const getMapMatterDetail_Api = (params) =>
|
|
|
- http.get("/h6/biz/map/h6MatterDetail", { params: params });
|
|
|
+ http.get("/h6/biz/map/h6MatterDetail", {
|
|
|
+ params: params
|
|
|
+ });
|
|
|
|
|
|
|
|
|
+export const getVisituvpv_Api = (data) => -http.post('/h5/biz/visituvpv/add', data)
|