uni-app 上拉加載跳轉頁面

上拉觸底生命周期:onReachBottom
具體實現:
模擬加載組件:

<template>
    <view class="uni-load-more">
        <view v-show="status === 'loading' && showIcon" class="uni-load-more__img">
            <view class="load1 load">
                <view :style="{ background: color }" class="uni-load-view_wrapper" />
                <view :style="{ background: color }" class="uni-load-view_wrapper" />
                <view :style="{ background: color }" class="uni-load-view_wrapper" />
                <view :style="{ background: color }" class="uni-load-view_wrapper" />
            </view>
            <view class="load2 load">
                <view :style="{ background: color }" class="uni-load-view_wrapper" />
                <view :style="{ background: color }" class="uni-load-view_wrapper" />
                <view :style="{ background: color }" class="uni-load-view_wrapper" />
                <view :style="{ background: color }" class="uni-load-view_wrapper" />
            </view>
            <view class="load3 load">
                <view :style="{ background: color }" class="uni-load-view_wrapper" />
                <view :style="{ background: color }" class="uni-load-view_wrapper" />
                <view :style="{ background: color }" class="uni-load-view_wrapper" />
                <view :style="{ background: color }" class="uni-load-view_wrapper" />
            </view>
        </view>
        <text :style="{ color: color }" class="uni-load-more__text">
            {{ status === 'more' ? contentText.contentdown : status === 'loading' ? contentText.contentrefresh : contentText.contentnomore }}
        </text>
    </view>
</template>
<script>
    export default {
        name: 'UniLoadMore',
        props: {
            status: {
                // 上拉的狀態(tài):more-loading前;loading-loading中延曙;noMore-沒有更多了
                type: String,
                default: 'more'
            },
            showIcon: {
                type: Boolean,
                default: true
            },
            color: {
                type: String,
                default: '#777777'
            },
            contentText: {
                type: Object,
                default () {
                    return {
                        contentdown: '上拉顯示更多',
                        contentrefresh: '正在加載...',
                        contentnomore: '沒有更多數據了'
                    }
                }
            }
        }
    }
</script>

<style>
    @charset "UTF-8";

    .uni-load-more {
        display: flex;
        flex-direction: row;
        height: 80upx;
        align-items: center;
        justify-content: center
    }
    .uni-load-more__text {
        font-size: 20rpx;
        color: #333333;
        font-family: 'DINOT-REGULAR';
    }
    .uni-load-more__img {
        height: 24px;
        width: 24px;
        margin-right: 10px
    }
    .uni-load-more__img>.load {
        position: absolute
    }
    .uni-load-more__img>.load .uni-load-view_wrapper {
        width: 6px;
        height: 2px;
        border-top-left-radius: 1px;
        border-bottom-left-radius: 1px;
        background: #999;
        position: absolute;
        opacity: .2;
        transform-origin: 50%;
        animation: load 1.56s ease infinite
    }
    .uni-load-more__img>.load .uni-load-view_wrapper:nth-child(1) {
        transform: rotate(90deg);
        top: 2px;
        left: 9px
    }

    .uni-load-more__img>.load .uni-load-view_wrapper:nth-child(2) {
        transform: rotate(180deg);
        top: 11px;
        right: 0
    }
    .uni-load-more__img>.load .uni-load-view_wrapper:nth-child(3) {
        transform: rotate(270deg);
        bottom: 2px;
        left: 9px
    }
    .uni-load-more__img>.load .uni-load-view_wrapper:nth-child(4) {
        top: 11px;
        left: 0
    }
    .load1,
    .load2,
    .load3 {
        height: 24px;
        width: 24px
    }
    .load2 {
        transform: rotate(30deg)
    }
    .load3 {
        transform: rotate(60deg)
    }
    .load1 .uni-load-view_wrapper:nth-child(1) {
        animation-delay: 0s
    }
    .load2 .uni-load-view_wrapper:nth-child(1) {
        animation-delay: .13s
    }
    .load3 .uni-load-view_wrapper:nth-child(1) {
        animation-delay: .26s
    }
    .load1 .uni-load-view_wrapper:nth-child(2) {
        animation-delay: .39s
    }
    .load2 .uni-load-view_wrapper:nth-child(2) {
        animation-delay: .52s
    }
    .load3 .uni-load-view_wrapper:nth-child(2) {
        animation-delay: .65s
    }

    .load1 .uni-load-view_wrapper:nth-child(3) {
        animation-delay: .78s
    }

    .load2 .uni-load-view_wrapper:nth-child(3) {
        animation-delay: .91s
    }
    .load3 .uni-load-view_wrapper:nth-child(3) {
        animation-delay: 1.04s
    }
    .load1 .uni-load-view_wrapper:nth-child(4) {
        animation-delay: 1.17s
    }
    .load2 .uni-load-view_wrapper:nth-child(4) {
        animation-delay: 1.3s
    }

    .load3 .uni-load-view_wrapper:nth-child(4) {
        animation-delay: 1.43s
    }
    @-webkit-keyframes load {
        0% {
            opacity: 1
        }

        100% {
            opacity: .2
        }
    }
</style>

引用:

<uni-load-more :status="status" :color="loadingcolor" :content-text="contentText" v-if="loading"/>

import uniLoadMore from '../../component/uni-load-more.vue'

data() {
    return {
        status:'',
        loadingcolor:'#006B69',
        contentText: {
            contentrefresh: '',
            contentnomore: 'Reached the bottom of the page, pull up to load the next page'
        },
        loading:false,
        toustrart:0,
        touend:0,
        bottoms:false,
        bot:false
    }
},

components:{
    uniLoadMore
}

上拉加載,跳轉下一頁實現:

第一步:觸底時今穿,給一個提示,到達頁面底部

onReachBottom(){
    this.loading=true
    this.status='noMore'
    this.loadingcolor="#777777";
    this.bottoms = true;
    console.log('onreachbottom')
},

第二步:實現上拉坯汤,主要利用手指進行上拉動作時,開始和結束的距離判斷
具體實現:

touchstart(event){
    this.toustrart = event.touches[0].clientY
},
touchmove(event){
    let  tag = event.touches;
    this.touend = tag[0].clientY
},
touchend(){
        if(this.toustrart - this.touend < 0){
        this.bottoms = false
    }
    if(this.bottoms){
        if(this.toustrart - this.touend > 50){
            this.loading=true
            this.status='loading'
            this.loadingcolor="#777777";
            var self = this
            setTimeout(function(){
                uni.navigateTo({
                     url: '../points/points'
                });
                self.status = 'noMore'
            },1000)
        }
    }
                
}

第三步陪汽,頁面初始化時训唱,給this.toustrart 和 this.touend清零褥蚯,防止返回時還存在挚冤,點擊就能跳轉

onShow() {
    this.toustrart = 0;
    this.touend = 0;
},
最后編輯于
?著作權歸作者所有,轉載或內容合作請聯系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市赞庶,隨后出現的幾起案子训挡,更是在濱河造成了極大的恐慌,老刑警劉巖歧强,帶你破解...
    沈念sama閱讀 207,248評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件澜薄,死亡現場離奇詭異,居然都是意外死亡摊册,警方通過查閱死者的電腦和手機肤京,發(fā)現死者居然都...
    沈念sama閱讀 88,681評論 2 381
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人忘分,你說我怎么就攤上這事棋枕。” “怎么了妒峦?”我有些...
    開封第一講書人閱讀 153,443評論 0 344
  • 文/不壞的土叔 我叫張陵重斑,是天一觀的道長。 經常有香客問我肯骇,道長窥浪,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,475評論 1 279
  • 正文 為了忘掉前任笛丙,我火速辦了婚禮漾脂,結果婚禮上,老公的妹妹穿的比我還像新娘胚鸯。我一直安慰自己符相,他們只是感情好,可當我...
    茶點故事閱讀 64,458評論 5 374
  • 文/花漫 我一把揭開白布蠢琳。 她就那樣靜靜地躺著啊终,像睡著了一般。 火紅的嫁衣襯著肌膚如雪傲须。 梳的紋絲不亂的頭發(fā)上蓝牲,一...
    開封第一講書人閱讀 49,185評論 1 284
  • 那天,我揣著相機與錄音泰讽,去河邊找鬼例衍。 笑死,一個胖子當著我的面吹牛已卸,可吹牛的內容都是我干的佛玄。 我是一名探鬼主播,決...
    沈念sama閱讀 38,451評論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼累澡,長吁一口氣:“原來是場噩夢啊……” “哼梦抢!你這毒婦竟也來了?” 一聲冷哼從身側響起愧哟,我...
    開封第一講書人閱讀 37,112評論 0 261
  • 序言:老撾萬榮一對情侶失蹤奥吩,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后蕊梧,有當地人在樹林里發(fā)現了一具尸體霞赫,經...
    沈念sama閱讀 43,609評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內容為張勛視角 年9月15日...
    茶點故事閱讀 36,083評論 2 325
  • 正文 我和宋清朗相戀三年肥矢,在試婚紗的時候發(fā)現自己被綠了端衰。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,163評論 1 334
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖旅东,靈堂內的尸體忽然破棺而出惕味,到底是詐尸還是另有隱情,我是刑警寧澤玉锌,帶...
    沈念sama閱讀 33,803評論 4 323
  • 正文 年R本政府宣布名挥,位于F島的核電站,受9級特大地震影響主守,放射性物質發(fā)生泄漏禀倔。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,357評論 3 307
  • 文/蒙蒙 一参淫、第九天 我趴在偏房一處隱蔽的房頂上張望救湖。 院中可真熱鬧,春花似錦涎才、人聲如沸鞋既。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,357評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽邑闺。三九已至,卻和暖如春棕兼,著一層夾襖步出監(jiān)牢的瞬間陡舅,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,590評論 1 261
  • 我被黑心中介騙來泰國打工伴挚, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留靶衍,地道東北人。 一個月前我還...
    沈念sama閱讀 45,636評論 2 355
  • 正文 我出身青樓茎芋,卻偏偏與公主長得像颅眶,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子田弥,可洞房花燭夜當晚...
    茶點故事閱讀 42,925評論 2 344