diff --git a/pages/store/home/index.vue b/pages/store/home/index.vue index d985481..7c66957 100644 --- a/pages/store/home/index.vue +++ b/pages/store/home/index.vue @@ -670,7 +670,7 @@ type: 3, statusBarHeight: 0, isLihaiYun: '', - + screenHeight: 0, } }, computed: { @@ -744,6 +744,7 @@ this.isCoupon = options.coupon || 0; this.diyActive = options.order || 0; this.order = options.order; + this.screenHeight = uni.getSystemInfoSync().screenHeight; if (options.spid) { this.currSpid = options.spid app.globalData.spid = options.spid; @@ -866,8 +867,10 @@ if (this.goodsLoading) return; const query = uni.createSelectorQuery().in(this); query.select('#goods').boundingClientRect(data => { - if (data.bottom < 1500 && data.top < 0) { - this.getGoods(); + console.log(data.bottom,data.top); + if (data.bottom < 1500+this.screenHeight && data.top < 0) { + if(this.type==7) this.getProductSpu(); + else this.getGoods(); // if (this.loadend == false) { // this.getProductSpu() // } else {; @@ -883,7 +886,7 @@ if (this.goodsLoading) return; const query = uni.createSelectorQuery().in(this); query.select('#product').boundingClientRect(data => { - if (data.bottom < 1500 && data.top < 0) { + if (data.bottom < 1500+this.screenHeight && data.top < 0) { this.get_service_list(); } }).exec(); @@ -1270,6 +1273,7 @@ }, onReachBottom() { + console.log('触底'); // 模拟触底刷新 if (this.tabActive == 0) { setTimeout(() => { diff --git a/pages/store/settled/index.vue b/pages/store/settled/index.vue index fa06f93..b7414fb 100644 --- a/pages/store/settled/index.vue +++ b/pages/store/settled/index.vue @@ -536,8 +536,8 @@ import { Toast } from '../../../libs/uniApi'; let area = self.business[0].find(item=>item.code==self.area_id)?.name; let street = self.business[1].find(item=>item.code==self.street_id)?.name; let village = self.business[2].find(item=>item.id==self.village_id)?.name; - // console.log(area, street, village); - this.business_name = `${area} ${street} ${village}` + this.business_name = `${area} ${street} ${village}`; + this.getArea(); } }) },