91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

利用uni-app怎么對底部導航欄進行自定義

發布時間:2020-12-14 15:15:03 來源:億速云 閱讀:1563 作者:Leah 欄目:開發技術

利用uni-app怎么對底部導航欄進行自定義?相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。

1. tabbar 組件

<template>
 <view class="tabbar-container">
  <view
   :
   v-for="(item, index) in tabbarList"
   :key="index"
   
   @click="switchTab(index)"
  >
   <view :class="'iconfont ' + item.icon" />
   <view class="title">{{ item.title }}</view>
  </view>
 </view>
</template>

mounted(){
 let dom = uni.createSelectorQuery().select('.tabbar-container')
  dom.boundingClientRect(e => {
   // tabbarHeight使用頻次較高,就設為全局變量了
    getApp().globalData.tabbarHeight = e.height
  }).exec()
}

<style scoped lang="scss">
.iconfont {
 font-size: 18px;
}

.tabbar-container {
 display: flex;
 justify-content: space-evenly;
 text-align: center;
 padding: 10px 0;
 background-color: #fff;
 box-shadow: 0 -1.5px 3px #eee;
 z-index: 999;

 .title {
  font-size: 12px;
 }
}
</style>

2. 引入

這里使用的是swiper,duration為0是為了關閉頁面切換動畫效果,

<template>
 <view :>
  <tab-bar
   :currentIndex="currentIndex"
   class="tabbar-container"
   @getCurrentIndex="getCurrentIndex"
  />
  <swiper duration="0" disable-touch :current="currentIndex" >
   <swiper-item>
    <scroll-view scroll-y >
     <home />
    </scroll-view>
   </swiper-item>
   <swiper-item>
    <todo-page />
   </swiper-item>
   <swiper-item>
    <launch-task />
   </swiper-item>
   <swiper-item>
    <my-page />
   </swiper-item>
  </swiper>
 </view>
</template>

mounted() {
 this.tabbarHeight = getApp().globalData.tabbarHeight
},

getCurrentIndex(e) {
 this.currentIndex = e;
}

看完上述內容,你們掌握利用uni-app怎么對底部導航欄進行自定義的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

克山县| 象山县| 南江县| 梅河口市| 揭东县| 香格里拉县| 卓资县| 临洮县| 镇平县| 新密市| 威信县| 游戏| 法库县| 大新县| 鹿泉市| 仙游县| 花垣县| 桃园市| 宁强县| 中山市| 上思县| 黄冈市| 海林市| 伊宁市| 安顺市| 南部县| 营山县| 西乌珠穆沁旗| 宜黄县| 公主岭市| 专栏| 高要市| 新化县| 无棣县| 汶上县| 和静县| 龙海市| 江口县| 巨野县| 南部县| 营山县|