This commit is contained in:
weipengfei 2023-12-28 18:04:37 +08:00
parent 399b23d44f
commit dbe08640e9
2 changed files with 10 additions and 6 deletions

View File

@ -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(() => {

View File

@ -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();
}
})
},