diff --git a/BagStation/pages/newRoutePlanning/chooseLocation.vue b/BagStation/pages/newRoutePlanning/chooseLocation.vue index 28e5ba6..ae5b270 100644 --- a/BagStation/pages/newRoutePlanning/chooseLocation.vue +++ b/BagStation/pages/newRoutePlanning/chooseLocation.vue @@ -144,6 +144,13 @@ }) }, getSuggestion() { + if(!this.seachValue) { + uni.showToast({ + title:'还没有输入地址哦~', + icon:'none' + }) + return + } this.loding(true) this.TXSDK.getSuggestion({ sig: 'mOPvEv4WmyaxymycTYy00pSiad2jnQil', diff --git a/BagStation/pages/newRoutePlanning/components/screen.vue b/BagStation/pages/newRoutePlanning/components/screen.vue index 9f85101..22cc51a 100644 --- a/BagStation/pages/newRoutePlanning/components/screen.vue +++ b/BagStation/pages/newRoutePlanning/components/screen.vue @@ -55,12 +55,7 @@ }, selePrice: function(n, o) { - console.log(this.selePrice, 'jiage'); - // this.filterData[1].lable = '低于' + this.selePrice.middlePrice; - // this.filterData[1].value = this.selePrice.middlePrice; - // this.filterData[2].lable = '最低价格'; - // this.filterData[2].value = this.selePrice.minPrice; - // this.filterData + this.filterData = [] if (n) { Object.keys(this.selePrice).forEach((item, index) => { diff --git a/BagStation/pages/newRoutePlanning/newRoutePlanning.vue b/BagStation/pages/newRoutePlanning/newRoutePlanning.vue index a007f12..5b0849f 100644 --- a/BagStation/pages/newRoutePlanning/newRoutePlanning.vue +++ b/BagStation/pages/newRoutePlanning/newRoutePlanning.vue @@ -94,7 +94,9 @@ latitude, longitude } = item - this.newMapMoveToLocation(longitude, latitude, 'reset') + setTimeout(() => { + this.newMapMoveToLocation(longitude, latitude, 'reset') + },500) }, bindregionchange(e) { console.log(e, '***********') @@ -209,14 +211,10 @@ } = this.$refs.addressSelector.datassFn(); let markerList = await this.mapUpdateMarkers(this.polyline[0].points, oilProductCode, juLi, siteChannel); - console.log('newRoutePlanning markerList', markerList) //处理油站站点数据并显示 this.spareMarkers = this.locationProcessing(markerList); - console.log('newRoutePlanning spareMarkers', this.spareMarkers) let markers = JSON.parse(JSON.stringify(this.spareMarkers)); - console.log('markers', markers) this.markers = await this.filterMarkers(markers); - console.log('newRoutePlanning this.markers', this.markers) }, // 更新最近搜索 UpdateLocation(Route, type) { @@ -371,6 +369,7 @@ latitude: this.coordinate.latitude, longitude: this.coordinate.longitude } + console.log(JSON.stringify(data)) let taht = this; return new Promise(function(re, rj) { oilSiteApi.getSiteByGeoHashNew(data).then(markerList => { @@ -457,12 +456,13 @@ }, //移动当前中心点 参数:经纬度 newMapMoveToLocation(longitude, latitude, type) { + console.log('newMapMoveToLocation') let that = this this.mapContext.moveToLocation({ longitude: longitude, latitude: latitude, success(e) { - console.log(`%c 移动 坐标→ ${longitude}-${latitude}`, 'color:green;font-size:20px'); + console.log(`移动 坐标→ ${longitude}-${latitude}`); if (type) { that.coordinate.latitude = latitude that.coordinate.longitude = longitude @@ -478,6 +478,9 @@ }) } }, + fail(ee) { + console.log('ee',ee) + } }) }, addfn(e) { diff --git a/BagStation/pages/newRoutePlanning/siteList.vue b/BagStation/pages/newRoutePlanning/siteList.vue index 4f9bfbc..855fb9f 100644 --- a/BagStation/pages/newRoutePlanning/siteList.vue +++ b/BagStation/pages/newRoutePlanning/siteList.vue @@ -1,14 +1,14 @@