溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

在小程序開發(fā)中如何實(shí)現(xiàn)一個(gè)tab標(biāo)簽頁(yè)

發(fā)布時(shí)間:2020-11-16 13:56:15 來(lái)源:億速云 閱讀:305 作者:Leah 欄目:開發(fā)技術(shù)

本篇文章為大家展示了在小程序開發(fā)中如何實(shí)現(xiàn)一個(gè)tab標(biāo)簽頁(yè),內(nèi)容簡(jiǎn)明扼要并且容易理解,絕對(duì)能使你眼前一亮,通過這篇文章的詳細(xì)介紹希望你能有所收獲。

具體內(nèi)容如下

頁(yè)面效果:

在小程序開發(fā)中如何實(shí)現(xiàn)一個(gè)tab標(biāo)簽頁(yè)

HTML:

<view wx:if="{{userType==0}}" >
 <view class="tab_box" >
  <view class="tabs_v">
  <block wx:for="{{tabs}}" wx:for-item="item" wx:key="index">
   <view class="tab_v {{index<1&#63;'tab_nature':'tab_course'}}" bindtap='changeCurrentTab_' data-index='{{index}}'
   data-current='{{index}}'>
   <text class="tab_txt {{currentTab==index&#63; 'tab_v_active' : ''}}">{{item.label}}</text>
   </view>
  </block>
  </view>
 </view>
 <!-- tab 容器 -->
 <view class="tabWrap">
  <swiper class="" current="{{currentTab}}" duration="300" bindchange="swiperTab" >
  <!-- 頁(yè)面1 -->
  <block>
   <swiper-item >
   <view class="" >
    <scroll-view  scroll-y="true" bindscrolltolower='scrollToLower'
    bindscrolltoupper='scrollToUpper' lower-threshold='30' upper-threshold='30'>
    <view >
     頁(yè)面1
    </view>
    </scroll-view>
   </view>
   </swiper-item>
  </block>
  <!-- 頁(yè)面2 -->
  <block>
   <swiper-item >
   <view class="" >
    <scroll-view  scroll-y="true" bindscrolltolower='scrollToLower'
    bindscrolltoupper='scrollToUpper' lower-threshold='30' upper-threshold='30'>
    <view >
     頁(yè)面2
    </view>
    </scroll-view>
   </view>
   </swiper-item>
  </block>
  </swiper>
 </view>
</view>

CSS:

/* tab */
.tab_box{
 height: 50px;
 display: flex;
 flex-direction: row;
 background-color: #fff;
 border-bottom: 1px solid #E5E5E5;
 margin-bottom: 15px;
}
.tabs_v{
 width: 100%;
 display: flex;
 flex-direction: row;
 justify-content: space-between;
 align-items: center;
}
.tab_v{
 width: 50%;
 text-align: center;
}
.tab_txt{
 border-bottom: 2px solid transparent;
 padding-bottom: 14px;
 color: #999999;
}
.tab_v_active{
 border-bottom: 2px solid #00C6AC;
 color: #00C6AC;
 font-weight: bold;
}
/* 容器 */
.tabWrap{
 width: 100%;
 height: calc(100% - 67px);
 position: relative;
 border-bottom: 1px solid #e6e6e6;
}

JS:

Page({
 
 /**
 * 頁(yè)面的初始數(shù)據(jù)
 */
 data: {
 tabs: [
  {label:'訪客', index: 0},
  {label:'工作人員', index: 1}
 ],
 currentTab:0
 },
 /**
 * 生命周期函數(shù)--監(jiān)聽頁(yè)面加載
 */
 onLoad: function (options) {
 },
 
 /**
 * 生命周期函數(shù)--監(jiān)聽頁(yè)面初次渲染完成
 */
 onReady: function () {
 
 },
 
 /**
 * 生命周期函數(shù)--監(jiān)聽頁(yè)面顯示
 */
 onShow: function () {
 
 },
 
 // tab切換
 changeCurrentTab_(e){
 let that = this
 if (that.data.currentTab === e.currentTarget.dataset.current){
  return false
 }else{
  that.setData({ 
  currentTab: e.currentTarget.dataset.current
  })
 }
 },
 //滑動(dòng)切換
 swiperTab: function (e) {
 var that = this;
 that.setData({
  currentTab: e.detail.current
 });
 }
})

上述內(nèi)容就是在小程序開發(fā)中如何實(shí)現(xiàn)一個(gè)tab標(biāo)簽頁(yè),你們學(xué)到知識(shí)或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識(shí)儲(chǔ)備,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI