您好,登錄后才能下訂單哦!
首先寫個子組件用來放刷新的內(nèi)容,命名為pull(可以看例子最后面放的。)
然后再要刷新的頁面引用
<template> <div class="fbjbox container"> <div class="fbjbox1"> <tab ref='tab' :list="['推薦','熱門','最新']" width="33%" @change='tabchange' /> <span class="price" width="33%" @tap="change" >價格<span class="mui-icon mui-icon-arrowright"></span></span> //點(diǎn)擊價格會排序 </div> <div class="fbjbox2"> <pull up="true" down="true" @up="next" @down="shuaxin" ref="pull"> <div class="mui-row mui-col-xs-12 mui-clearfix"> <span class="mui-col-xs-6" v-href="{name:'商品詳情'}" rel="external nofollow" v-for="item in list"> <div class="img"><img v-bind:src="item.goods_image"/></div> <h5>{{item.goods_name}}</h5> <p class="red1">¥{{item.goods_price}}</p> </span> </div> </pull> </div> </div> </template> <style> /*選項(xiàng)卡的顏色*/ .tab{background:#fff;} .tab a.active{color:#D83737; border-bottom: 2px solid #D83737;} .red1{color:red;font-size:15px;padding-left:10px} h5{font-size:16px;font-weight:normal;color:#656565;padding-left:10px} </style> <style scoped> .container{font-family: "微軟雅黑";} .mui-row{ overflow: hidden;margin-bottom: 20px;} .mui-row .mui-col-xs-6{width:49%;background-color:#fff;overflow: hidden;margin-top:6px;text-align: left;} .mui-row .mui-col-xs-6:nth-child(even){margin-left:2%;} .mui-row img{width:100%;} .mui-row .img{height:170px;} </style> <script> import tab from '../tab' import pull from '../public/pull' export default { created() { this.height = window.innerWidth * 40 / 64; this.is_zc = this.$route.query.is_zc == 1; this.uid = localStorage.getItem('uid'); }, mounted(){ this.shuaxin(() => { }); }, data() { return { tab:0, list:[], order:1 //order是排序。1的默認(rèn)的,2從低到高,3從高到低 } }, components: {tab,pull}, computed:{ //cmd也是一個變量 ,而且根據(jù)選項(xiàng)卡的不同而不同 cmd:function(){ switch(this.tab){ case 0: return "Mp/goodsTuijian"; case 1: return "Mp/hotGoods"; case 2: return "Mp/newGoods"; } } }, methods: { tabchange({index, data}) { this.tab = index; }, shuaxin(done) { //首先進(jìn)去以后的初始 this.$api(this.cmd, { page: 0,order:this.sort }).then(list => { //除了把頁面?zhèn)鬟^去還需要把排序的方式傳過去 this.list=list; done(); //跳到一個新的選項(xiàng)卡時,頁面從新從第一個.不是拉到的那個位置 if(this.$refs.pull){ this.$refs.pull.reset(); this.$refs.pull.nodata = false; } }); }, next(done) { var page = this.list.length; this.$api(this.cmd, { page,order:this.sort }).then(list => { if (list.length == 0) { return done&&done(true);} //這個里面如果只出現(xiàn)done(true)的話可能就是只顯示沒有數(shù)據(jù)了,不會出現(xiàn)正在加載中 this.list = this.list.concat(list); done(); }); }, change(){ //點(diǎn)擊價格時變化的class if(this.sort==1){this.sort=2;} else if(this.sort==2){this.sort=3;} else if(this.sort==3){this.sort=1;} this.shuaxin(() => { }); } }, watch:{ //監(jiān)聽。當(dāng)選項(xiàng)卡改變的時候,刷新頁面。 tab:function(){ this.shuaxin(() => { }); }, } } </script>
下面是命名為pull的子組件。
<template> <div class="mui-scroll-wrapper" ref="box" v-bind:> <div class="mui-pull-top-pocket mui-block" v-bind:class="{'mui-visibility':obj.y>0}" v-if="down"> <div class="mui-pull" v-show="flag"> <div class="mui-pull-loading mui-icon" v-bind:class="{'mui-spinner': type==2,'mui-icon-pulldown':type!=2}" v-bind:></div> <div class="mui-pull-caption" v-if="type==0">下拉可以刷新</div> <div class="mui-pull-caption" v-if="type==1">釋放立即刷新</div> <div class="mui-pull-caption" v-if="type==2">正在刷新</div> </div> </div> <div class="mui-scroll" @scrollstart.self="scrollstart" @scroll.self="scroll" @scrollbottom="scrollbottom"> <slot> <div class="no-content"> <i></i> <h5>暫無內(nèi)容</h5> </div> </slot> <div class="mui-pull-bottom-pocket mui-block mui-visibility" v-if="type==4"> <div class="mui-pull"> <div class="mui-icon mui-spinner mui-visibility" ></div> <div class="mui-pull-caption mui-visibility">正在加載...</div> </div> </div> <!--<div v-if="nodata" class="nodata">已經(jīng)沒有更多數(shù)據(jù)</div>--> <div v-if="nodata" class="yqxtsdkn"></div> </div> </div> </template> <style scoped> .mui-scroll-wrapper { position:relative;height:100%;} .nodata { color:#efefef;text-align:center;margin-top:10px;line-height: 30px; font-size: 12px; background:#0B2E4C} </style> <script> export default { mounted() { var box = this.$refs.box; this.obj = mui(box).scroll(); }, props: ["down", "up", "top"], data() { return { flag: false, Y: 0, obj: {}, type: 0, nodata: false } }, computed: { css1() { return { transition: this.type > 0 ? '-webkit-transform 0.3s ease-in' : "", transform: this.type > 0 ? 'rotate(180deg)' : "", animation: this.type == 2 ? "spinner-spin 1s step-end infinite" : "" }; } }, watch: { type(a, b) { if (b == 1) { this.type = 2; } if (a == 2) { this.flag = false; this.obj.setTranslate(0, 50); this.$emit("down", () => { this.type = 0; this.obj.setTranslate(0, 0); this.obj.reLayout(); this.nodata = false; }); } } }, methods: { reset(){ this.obj.setTranslate(0, 0); }, scrollstart() { if (this.obj.lastY <= 0) { this.flag = true; } else { this.Y = 0; this.flag = false; } }, scroll() { if (this.down && this.flag) { this.type = this.obj.y > 50 ? 1 : 0; if (this.obj.y > 0) { this.Y = this.obj.y; } } }, scrollbottom() { if (this.nodata || !this.up || this.type == 4) return; this.type = 4; this.$emit("up", (n) => { this.type = 0; if (n == true) this.nodata = true; this.obj.reLayout(); }); } } } </script>
tab的一個例子
<template> <div class="mypage"> <div class="fbjbox"> <div class="fbjbox1"> <tab ref="tab" :list="['一級合伙人'+count,'二級合伙人']" width="50%" @change="tabchange" /> </div> <div class="fbjbox2"> <template v-if="list!=null&&tab==0"> <h5 >一級合伙人總數(shù){{count}}人</h5> <ul class="mui-table-view clear"> <li class="mui-table-view-cell mui-media" v-for="item in list"> <img class="mui-media-object mui-pull-left circle" v-bind:src="item.head_url" /> <div class="mui-media-body"> {{item.vname}} <p class='mui-ellipsis'>{{item.identity}}</p> </div> </li> </ul> </template> <template v-if="list!=null&&tab==1"> <h5 >二級合伙人總數(shù){{count}}人</h5> <ul class="mui-table-view clear"> <li class="mui-table-view-cell mui-media" v-for="item,index in list"> <div class="mui-media-body" v-cloak> {{type(index)}}人數(shù)<p class="mui-pull-right">{{item}}</p> </div> </li> </ul> </template> <!--<template v-if="list==null"> <div class=" mui-text-center" > <span class="mui-spinner"></span> </div> </template>--> <template v-if="list==[]"> <div>暫無下線</div> </template> </div> </div> </div> </template> <style scoped=""> p{color:#807E7E} .circle{margin-top:0px} .mypage{height:100%;} .mui-table-view .mui-media-object { line-height: 45px; max-width: 45px; height: 45px; } </style> <script> import tab from "../public/tab" import pull from "../public/pull" export default { mounted() { this.changemes(); }, components: {tab,pull}, data() { return { tab:0, count:0, list: [] } }, computed:{ cmd:function(){ switch(this.tab){ case 0: return "Member/oneLevel"; case 1: return "Member/twoLevel"; } } }, methods: { type(num){ switch (~~num) { case 1: return "游客"; case 2: return "用戶"; case 3: return "粉絲"; case 4: return "美人"; case 5: return "賣手"; case 6: return "合伙人"; case 7: return "加盟商"; } return "未知"; }, tabchange({index, data}) { this.tab = index; }, changemes(){ this.list=null; this.$api(this.cmd).then(list => { this.count=list.count; this.list=list.list; }); } }, watch:{ tab:function(){ this.changemes(); } } } </script>
以上這篇vue刷新和tab切換實(shí)例就是小編分享給大家的全部內(nèi)容了,希望能給大家一個參考,也希望大家多多支持億速云。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。