|
|
|
@ -65,7 +65,6 @@ |
|
|
|
|
</view> |
|
|
|
|
</swiper-item> |
|
|
|
|
</swiper> |
|
|
|
|
|
|
|
|
|
<image mode="widthFix" style="margin-top: 30px;width: 90%;margin-left: 5%;" v-for="(row, index) in homeCateList" |
|
|
|
|
:key="index" @click="jumphuafei(row)" :src="imageUrl+row.imgData"></image> |
|
|
|
|
<!-- 赠券 --> |
|
|
|
@ -85,11 +84,13 @@ |
|
|
|
|
</swiper> |
|
|
|
|
<wybPopup ref="popup" type="center" height="850" width="600" bgColor="" radius="6" :showCloseIcon="true"> |
|
|
|
|
<image class="popImg" :src="imageUrl+imgadres3" @click="jumpWeb"></image> |
|
|
|
|
</wybPopup> |
|
|
|
|
<button open-type="contact"> |
|
|
|
|
<image :src="imagewxUrl+imgadres4" mode="widthFix" class="xfimg"></image> |
|
|
|
|
</button> |
|
|
|
|
<view class="height60"></view> |
|
|
|
|
</wybPopup> |
|
|
|
|
<button open-type="contact"> |
|
|
|
|
<image :src="imagewxUrl+imgadres4" mode="widthFix" class="xfimg"></image> |
|
|
|
|
</button> |
|
|
|
|
<view class="height40"></view> |
|
|
|
|
<!-- <official-account bindload="bindload" binderror="binderror"></official-account> --> |
|
|
|
|
<!-- <view class="height20"></view> --> |
|
|
|
|
</view> |
|
|
|
|
</template> |
|
|
|
|
|
|
|
|
@ -104,7 +105,8 @@ |
|
|
|
|
getTPigKFCToken, |
|
|
|
|
getTPigCinemaToken, |
|
|
|
|
getCmsContent, |
|
|
|
|
getMembershipLevel |
|
|
|
|
getMembershipLevel, |
|
|
|
|
findByLatAndLng |
|
|
|
|
} from "../../../Utils/Api.js"; //您的api路径 |
|
|
|
|
import wybPopup from '../../../components/wyb-popup/wyb-popup.vue'; |
|
|
|
|
let app = getApp(); |
|
|
|
@ -185,8 +187,8 @@ |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
onLoad(options) { |
|
|
|
|
app.globalData.accountId = options.accountId; |
|
|
|
|
let that = this; |
|
|
|
|
|
|
|
|
|
// 1.wx获取登录用户code |
|
|
|
|
// #ifdef MP |
|
|
|
|
uni.login({ |
|
|
|
@ -346,7 +348,7 @@ |
|
|
|
|
success: function(res) { |
|
|
|
|
app.globalData.latitude = res.latitude; |
|
|
|
|
app.globalData.longitude = res.longitude; |
|
|
|
|
that.getUserLocation(res.longitude, res.latitude); |
|
|
|
|
// that.findByLatAndLng(res.longitude, res.latitude); |
|
|
|
|
// #ifdef MP |
|
|
|
|
uni.request({ |
|
|
|
|
url: 'https://apis.map.qq.com/ws/geocoder/v1/?location=' + res.latitude + |
|
|
|
@ -368,14 +370,47 @@ |
|
|
|
|
that.getCmsContentcmshome(); |
|
|
|
|
that.getCmsContentcmsContent(); |
|
|
|
|
}, |
|
|
|
|
fail() { |
|
|
|
|
fail(err) { |
|
|
|
|
uni.hideLoading() |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
//#endif |
|
|
|
|
}, |
|
|
|
|
fail: (err) => { |
|
|
|
|
if (err.errCode == 2) { |
|
|
|
|
uni.showToast({ |
|
|
|
|
title: '请开启系统定位', |
|
|
|
|
duration: 3000, |
|
|
|
|
icon: 'none' |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
}, |
|
|
|
|
//经纬度转换 |
|
|
|
|
findByLatAndLng(item, item1) { |
|
|
|
|
let that = this; |
|
|
|
|
let datas = { |
|
|
|
|
lng: item, |
|
|
|
|
lat: item1 |
|
|
|
|
} |
|
|
|
|
findByLatAndLng(datas).then(res => { |
|
|
|
|
if (res.return_code == '000000') { |
|
|
|
|
that.city = res.return_data.result.addressComponent.province; |
|
|
|
|
app.globalData.cityName = res.return_data.result.addressComponent |
|
|
|
|
.province; |
|
|
|
|
app.globalData.cityId = res.return_data.result.addressComponent.adcode; |
|
|
|
|
// app.globalData.cityId = '500100'; |
|
|
|
|
that.getCouponListArea(); |
|
|
|
|
that.getCouponListgold(); |
|
|
|
|
uni.hideLoading(); |
|
|
|
|
that.getCmsContent(); |
|
|
|
|
that.getCmsAactibity(); |
|
|
|
|
that.getCmsContentcmshome(); |
|
|
|
|
that.getCmsContentcmsContent(); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
//H5 获取openId |
|
|
|
|
getH5AccessToken(item) { |
|
|
|
|
let params = { |
|
|
|
@ -449,7 +484,6 @@ |
|
|
|
|
}) |
|
|
|
|
.catch(err => { |
|
|
|
|
uni.hideLoading() |
|
|
|
|
console.log(err); |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
@ -488,8 +522,8 @@ |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
this.productListleg = res.return_data.total; |
|
|
|
|
}else{ |
|
|
|
|
this.productList = []; |
|
|
|
|
} else { |
|
|
|
|
this.productList = []; |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
}, |
|
|
|
@ -510,8 +544,8 @@ |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
this.goldproductListleg = res.return_data.total; |
|
|
|
|
}else{ |
|
|
|
|
this.productList = []; |
|
|
|
|
} else { |
|
|
|
|
this.productList = []; |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
}, |
|
|
|
@ -675,13 +709,13 @@ |
|
|
|
|
url: '../../../subPages/preferred-goods/preferred-goods' |
|
|
|
|
}) |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
if (item.title == '优惠券包') { |
|
|
|
|
uni.navigateTo({ |
|
|
|
|
url:'../../../subPages/coupon-package/coupon-package' |
|
|
|
|
}) |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
if (item.title == '优惠券包') { |
|
|
|
|
uni.navigateTo({ |
|
|
|
|
url: '../../../subPages/coupon-package/coupon-package' |
|
|
|
|
}) |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}, |
|
|
|
@ -704,13 +738,13 @@ |
|
|
|
|
.popImg { |
|
|
|
|
width: 300px; |
|
|
|
|
height: 440px; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.xfimg{ |
|
|
|
|
width: 80rpx; |
|
|
|
|
bottom: 60rpx; |
|
|
|
|
position: fixed; |
|
|
|
|
right: 40rpx; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.xfimg { |
|
|
|
|
width: 80rpx; |
|
|
|
|
bottom: 60rpx; |
|
|
|
|
position: fixed; |
|
|
|
|
right: 40rpx; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@font-face { |
|
|
|
@ -1181,7 +1215,7 @@ |
|
|
|
|
.orange-content .swiper-item { |
|
|
|
|
height: 180rpx; |
|
|
|
|
margin-left: 14rpx; |
|
|
|
|
margin-top: 14rpx; |
|
|
|
|
margin-top: 14rpx; |
|
|
|
|
float: left; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|