店铺商品的下拉刷新
This commit is contained in:
parent
8dc86cfa53
commit
75e98578c2
@ -662,8 +662,7 @@
|
||||
"path": "home/index",
|
||||
"style": {
|
||||
"navigationStyle": "custom",
|
||||
"navigationBarTitleText": "店铺首页",
|
||||
"enablePullDownRefresh": true
|
||||
"navigationBarTitleText": "店铺首页"
|
||||
// #ifdef MP
|
||||
,
|
||||
"navigationBarTextStyle": "#FFFFFF"
|
||||
|
@ -74,7 +74,7 @@
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<scroll-view class="main" scroll-y="true" @scroll="scrollHome" catchtouchmove :style="viewColor">
|
||||
<scroll-view @refresherrefresh="onRefresh" refresher-enabled="true" :refresher-triggered="isTriggered" class="main" scroll-y="true" @scroll="scrollHome" catchtouchmove :style="viewColor">
|
||||
<!-- 店铺信息 -->
|
||||
<view id="store" class="store">
|
||||
<image :src="store.mer_avatar"></image>
|
||||
@ -496,6 +496,8 @@
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
//下拉
|
||||
isTriggered:false,
|
||||
domain: HTTP_REQUEST_URL,
|
||||
// #ifdef MP
|
||||
menuButtonInfo: uni.getMenuButtonBoundingClientRect(),
|
||||
@ -1183,7 +1185,18 @@
|
||||
}
|
||||
},
|
||||
//#endif
|
||||
onRefresh(){
|
||||
this.isTriggered = true;
|
||||
const newList = this.goods.reverse();
|
||||
this.goods = newList;
|
||||
this.getProductSpu()
|
||||
setTimeout(() => {
|
||||
this.isTriggered = false;
|
||||
}, 500)
|
||||
|
||||
},
|
||||
},
|
||||
|
||||
onReachBottom() {
|
||||
// 模拟触底刷新
|
||||
if (this.tabActive == 0) {
|
||||
@ -1200,7 +1213,7 @@
|
||||
this.goods = newList;
|
||||
this.getProductSpu()
|
||||
// uni.startPullDownRefresh();
|
||||
uni.stopPullDownRefresh();
|
||||
// uni.stopPullDownRefresh();
|
||||
}, 500)
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user