|
@@ -30,7 +30,7 @@
|
|
|
|
|
|
<!-- 轮播 -->
|
|
|
<view class="swiper-group">
|
|
|
- <u-swiper height="210" :list="swiperList" @change="e => current = e.current" :autoplay="false" keyName="imageUrl" @click="clickImageUrl">
|
|
|
+ <u-swiper height="210" :list="swiperList" @change="e => current = e.current" :autoplay="true" keyName="imageUrl" @click="clickImageUrl">
|
|
|
<view slot="indicator" class="indicator">
|
|
|
<view class="indicator__dot" v-for="(item, index) in swiperList" :key="index"
|
|
|
:class="[index === current && 'indicator__dot--active']">
|
|
@@ -229,12 +229,14 @@ export default {
|
|
|
latitude: this.markers[0].latitude || '', /* 纬度 */
|
|
|
longitude: this.markers[0].longitude || '', /* 经度 */
|
|
|
success: (res) => {
|
|
|
+ console.log("changeAddress ---> ", res)
|
|
|
if (res.name){
|
|
|
this.markers[0].latitude = res.latitude;
|
|
|
this.markers[0].longitude =res.longitude;
|
|
|
this.markers[0].label.content = res.name;
|
|
|
uni.setStorageSync('user_longitude', res.longitude);
|
|
|
uni.setStorageSync('user_latitude', res.latitude);
|
|
|
+ uni.setStorageSync('user_address', res.address);
|
|
|
}
|
|
|
},
|
|
|
fail: function (err) {
|
|
@@ -250,6 +252,7 @@ export default {
|
|
|
success: function (res) {
|
|
|
uni.setStorageSync('user_longitude', res.longitude);
|
|
|
uni.setStorageSync('user_latitude', res.latitude);
|
|
|
+
|
|
|
console.log("dizhixinxi -> ", res)
|
|
|
that.markers[0].longitude = res.longitude;
|
|
|
that.markers[0].latitude = res.latitude;
|
|
@@ -261,6 +264,7 @@ export default {
|
|
|
// }
|
|
|
that.positionInfo.address = res.result.address_reference.landmark_l2.title
|
|
|
that.markers[0].label.content = res.result.address_reference.landmark_l2.title
|
|
|
+ uni.setStorageSync('user_address', res.result.address);
|
|
|
})
|
|
|
}
|
|
|
});
|