Commit a09dbf9c authored by tangfh's avatar tangfh

+

parent a164207a
......@@ -9,9 +9,10 @@
<swiper :current="tabIndex" class="swiper-box" :duration="300" @change="onTabChange"
:style="{height: swiperHeight + 'px'}">
<swiper-item class="swiper-item" v-for="(tab,index) in tabBars" :key="index">
<scroll-view class="scroll-v" scroll-y :refresher-enabled="tab.content.refresherEnable" @refresherrefresh="onRefresh()"
:enable-back-to-top="true" :lower-threshold="75" :refresher-triggered="tab.content.refreshing"
@scrolltolower="onLoadMore(index)" :style="{height: (swiperHeight) + 'px'}">
<scroll-view class="scroll-v" scroll-y :refresher-enabled="tab.content.refresherEnable"
@refresherrefresh="onRefresh()" :enable-back-to-top="true" :lower-threshold="75"
:refresher-triggered="tab.content.refreshing" @scrolltolower="onLoadMore(index)"
:style="{height: (swiperHeight) + 'px'}">
<view class="flex-column" v-if="tab.content.list.length > 0"
:style="{'min-height': (swiperHeight + 'px')}">
<view class="view-tmp1 active" v-for="(item2, index2) in tab.content.list" :index="index2"
......@@ -103,7 +104,7 @@
var tab = this.tabBars[this.tabIndex];
setTimeout(() => {
tab.content.refreshing = true;
}, 1000)
}, 35)
},
onNavBarLeftClick() {
uni.navigateBack();
......@@ -138,6 +139,8 @@
if (!url) {
return;
}
var tab = this.tabBars[this.tabIndex];
tab.content.refreshFlag = false;
let param = {
status: this.tabBars[index].type,
screen: this.screen,
......@@ -184,6 +187,7 @@
},
requestComplete() {
var tab = this.tabBars[this.tabIndex];
tab.content.refreshFlag = false;
tab.content.firstRequest = false;
tab.content.refreshing = false;
tab.content.isRequestComplete = true;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment