From 343821be1e8e8b8af8cc7dc3913bb043b463883e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E5=81=A5?= Date: Wed, 8 Sep 2021 09:28:47 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=80=E4=BA=9B=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../detail-announcement/detail-announcement.js | 4 ++-- pages/auth/auth.wxml | 2 +- utils/gisApi.js | 18 +++++++++--------- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/components/detail-announcement/detail-announcement.js b/components/detail-announcement/detail-announcement.js index 322c156..854f6c9 100644 --- a/components/detail-announcement/detail-announcement.js +++ b/components/detail-announcement/detail-announcement.js @@ -85,7 +85,7 @@ Component({ latitude: Number(longitude), longitude: Number(latitude), name: res.data[0].name, - scale: 28 + scale: 10 }) } }) @@ -99,7 +99,7 @@ Component({ latitude: Number(longitude), longitude: Number(latitude), name: res.data[0].name, - scale: 28 + scale: 10 }) } }) diff --git a/pages/auth/auth.wxml b/pages/auth/auth.wxml index 162544c..2301fef 100644 --- a/pages/auth/auth.wxml +++ b/pages/auth/auth.wxml @@ -1,6 +1,6 @@ - + diff --git a/utils/gisApi.js b/utils/gisApi.js index ee6e2ca..056dc6e 100644 --- a/utils/gisApi.js +++ b/utils/gisApi.js @@ -41,7 +41,7 @@ const DELETE = 'DELETE'; // url: "/pages/auth/auth", // }) // // setTimeout(() => { - + // // }, 1500) // } else { // resolve(res.data); @@ -57,14 +57,14 @@ const DELETE = 'DELETE'; const API = { - getLandListing: (data) => request(GET, `getLandListing`, data), //已出让 - getLandList: (data) => request(GET, `getLandList`, data), //挂牌中 - getRegionByLocation: (data) => request(GET, `getRegionByLocation`, data), //行政区 - getLandToList: (data) => request(GET, `getLandToList`, data), //待挂牌 - getFacilitiesByLocation: (data) => request(GET, `getFacilitiesByLocation`, data), //配套 - getLoopLine: (data) => request(GET, `getLoopLine`, data), //环线 - getTypeRegionByLocation: (data) => request(GET, `getTypeRegionByLocation`, data), //大组团或者小组团 - AJAX: (GET, url, data, is_token) => request(GET, url, data, is_token), + getLandListing: (data) => request(GET, `applets/map/getLandListing`, data), //已出让 + getLandList: (data) => request(GET, `applets/map/getLandList`, data), //挂牌中 + getRegionByLocation: (data) => request(GET, `applets/map/getRegionByLocation`, data), //行政区 + getLandToList: (data) => request(GET, `applets/map/getLandToList`, data), //待挂牌 + getFacilitiesByLocation: (data) => request(GET, `applets/map/getFacilitiesByLocation`, data), //配套 + getLoopLine: (data) => request(GET, `applets/map/getLoopLine`, data), //环线 + getTypeRegionByLocation: (data) => request(GET, `applets/map/getTypeRegionByLocation`, data), //大组团或者小组团 + AJAX: (GET, url, data, is_token) => request(GET, 'applets/map/' + url, data, is_token), }; module.exports = { API: API