|
@@ -50,7 +50,8 @@
|
|
|
<view :style="{ height: swiperHeight }">
|
|
|
<swiper :style="{ height: swiperHeight }" :current="tabIndex" @change="swiperChange">
|
|
|
<swiper-item v-for="(tab, i) in navigationList" :key="i">
|
|
|
- <mescroll-item ref="MescrollItem" :i="i" :index="tabIndex" :currentId="currentId" :tabs="navigationList" :height="swiperHeight" :positionInfo="positionInfo">
|
|
|
+ <mescroll-item ref="MescrollItem" :i="i" :index="tabIndex" :currentId="currentId" :tabs="navigationList"
|
|
|
+ :height="swiperHeight" :positionInfo="positionInfo" @openWindow="openWindow">
|
|
|
</mescroll-item>
|
|
|
</swiper-item>
|
|
|
</swiper>
|
|
@@ -66,17 +67,17 @@
|
|
|
</view>
|
|
|
|
|
|
<view class="tips2">
|
|
|
- 您所在的城市没有开放团购目前仅支持的城市如下:
|
|
|
+ 您所在的城市没有在拼团中的团购,请切换城市或查看历史团购。团购目前仅支持的城市如下:
|
|
|
</view>
|
|
|
|
|
|
<view class="tips3">
|
|
|
- 上海市
|
|
|
+ 合肥市
|
|
|
</view>
|
|
|
|
|
|
<view class="tips4">
|
|
|
您可以通过右上角"
|
|
|
<text class="red">切换地点</text>
|
|
|
- "定位到支持
|
|
|
+ "按钮切换城市及地点
|
|
|
</view>
|
|
|
<button class="tips5" @click="showTips = false">
|
|
|
知道了
|
|
@@ -174,13 +175,9 @@ export default {
|
|
|
computed: mapGetters(['isLogin']),
|
|
|
created () {
|
|
|
this.getAdsList();
|
|
|
- this.getLatestGroupon();
|
|
|
this.getCurrentLocation()
|
|
|
let sysInfo=uni.getSystemInfoSync();
|
|
|
- console.log("设备信息")
|
|
|
- console.log(sysInfo)
|
|
|
this.swiperHeight= sysInfo.windowHeight -(sysInfo.screenWidth/750) * (200) +'px';
|
|
|
- console.log(this.swiperHeight)
|
|
|
},
|
|
|
onMounted (options) {
|
|
|
},
|
|
@@ -225,18 +222,23 @@ export default {
|
|
|
},
|
|
|
|
|
|
changeAddress () {
|
|
|
+ this.tabIndex = 0;
|
|
|
+ let that = this;
|
|
|
uni.chooseLocation({
|
|
|
latitude: this.markers[0].latitude || '', /* 纬度 */
|
|
|
longitude: this.markers[0].longitude || '', /* 经度 */
|
|
|
success: (res) => {
|
|
|
- console.log("changeAddress ---> ", res)
|
|
|
- if (res.name){
|
|
|
+ console.log(res)
|
|
|
+ if (res.address){
|
|
|
+ console.log("wojinlail ...")
|
|
|
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);
|
|
|
+ uni.setStorageSync('user_address', res.address);
|
|
|
+ // that.tabIndex = 0;
|
|
|
+ that.$refs.MescrollItem[that.tabIndex].downCallback();
|
|
|
}
|
|
|
},
|
|
|
fail: function (err) {
|
|
@@ -252,11 +254,12 @@ export default {
|
|
|
success: function (res) {
|
|
|
uni.setStorageSync('user_longitude', res.longitude);
|
|
|
uni.setStorageSync('user_latitude', res.latitude);
|
|
|
-
|
|
|
+ uni.setStorageSync('user_address', res.latitude);
|
|
|
console.log("dizhixinxi -> ", res)
|
|
|
that.markers[0].longitude = res.longitude;
|
|
|
that.markers[0].latitude = res.latitude;
|
|
|
getAddress(res.longitude, res.latitude).then(res => {
|
|
|
+ uni.setStorageSync('user_address', res.result.address);
|
|
|
//初始化地址信息
|
|
|
console.log("++++++++++初始化地址信息++++++++++++", res)
|
|
|
// if (res.result.address_component.city.indexOf('上海') === -1){
|
|
@@ -264,13 +267,16 @@ 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);
|
|
|
})
|
|
|
}
|
|
|
});
|
|
|
|
|
|
},
|
|
|
|
|
|
+ openWindow() {
|
|
|
+ this.showTips = true;
|
|
|
+ },
|
|
|
+
|
|
|
|
|
|
// 获取当前地址
|
|
|
loAcquire (longitude, latitude) {
|
|
@@ -848,12 +854,11 @@ page {
|
|
|
}
|
|
|
|
|
|
.tips3 {
|
|
|
- height: 66rpx;
|
|
|
+ height: 100rpx;
|
|
|
font-size: 48rpx;
|
|
|
font-weight: 600;
|
|
|
color: #333333;
|
|
|
- line-height: 66rpx;
|
|
|
- margin-bottom: 30rpx;
|
|
|
+ line-height: 100rpx;
|
|
|
}
|
|
|
|
|
|
.tips4 {
|