中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

利用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

道真| 抚顺县| 历史| 亳州市| 虞城县| 福州市| 宁化县| 柏乡县| 沾益县| 垦利县| 锡林郭勒盟| 黑河市| 营山县| 朝阳市| 忻城县| 崇礼县| 永康市| 常德市| 潼关县| 台南市| 承德市| 扎赉特旗| 吉安市| 始兴县| 昭通市| 陇川县| 安康市| 米脂县| 百色市| 额尔古纳市| 义马市| 通河县| 沙湾县| 东山县| 高阳县| 冷水江市| 托克托县| 石泉县| 宿迁市| 昌宁县| 兰坪|