您好,登錄后才能下訂單哦!
這篇文章給大家介紹怎么在微信小程序中實現tab選項卡,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
.wxml
<!--pages/detail/detail.wxml--> <view class="swiper-tab"> <view class="swiper-tab-item {{currentTab==0?'active':''}}" data-current="0" bindtap="clickTab">全部</view> <view class="swiper-tab-item {{currentTab==1?'active':''}}" data-current="1" bindtap="clickTab">提現中</view> <view class="swiper-tab-item {{currentTab==2?'active':''}}" data-current="2" bindtap="clickTab">已提現</view> </view> <swiper current="{{currentTab}}" duration="300" bindchange="swiperTab"> <swiper-item ><view>全部</view></swiper-item> <swiper-item><view>提現中</view></swiper-item> <swiper-item><view>已提現</view></swiper-item> </swiper>
.wxss
/* pages/detail/detail.wxss */ .swiper-tab{ width: 100%; border-bottom: 2rpx solid #ccc; text-align: center; height: 88rpx; line-height: 88rpx; display: flex; flex-flow: row; justify-content: space-between; } .swiper-tab-item{ width: 30%; color:#434343; } .active{ color:#F65959; border-bottom: 4rpx solid #F65959; } swiper{ text-align: center; }
.js
// pages/detail/detail.js var app = getApp() Page({ data: { currentTab: 0 }, onLoad: function (options) { // 頁面初始化 options為頁面跳轉所帶來的參數 }, //滑動切換 swiperTab: function (e) { var that = this; that.setData({ currentTab: e.detail.current }); }, //點擊切換 clickTab: function (e) { var that = this; if (this.data.currentTab === e.target.dataset.current) { return false; } else { that.setData({ currentTab: e.target.dataset.current }) } } })
關于怎么在微信小程序中實現tab選項卡就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。