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

溫馨提示×

溫馨提示×

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

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

小程序怎么自定義tabBar組件封裝

發布時間:2021-11-04 17:26:14 來源:億速云 閱讀:164 作者:iii 欄目:開發技術

這篇文章主要介紹“小程序怎么自定義tabBar組件封裝”,在日常操作中,相信很多人在小程序怎么自定義tabBar組件封裝問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”小程序怎么自定義tabBar組件封裝”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

具體內容如下

小程序怎么自定義tabBar組件封裝

1、新建組件:在component下新建一個tabBar

2、組件的index.wxml結構如下:

<cover-view class="tab-bar">
 <cover-view class="tab-bar-border"></cover-view>
 <cover-view wx:for="{{list}}" wx:key="index" class="tab-bar-item" data-path="{{item.pagePath}}" data-index="{{index}}" bindtap="tabChange">
  <cover-image src="{{tabbarIndex === index ? item.selectedIconPath : item.iconPath}}"></cover-image>
  <cover-view >{{item.text}}</cover-view>
 </cover-view>
</cover-view>

3、組件的index.wxss結構如下:

.tab-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: white;
  display: flex;
  padding-bottom: env(safe-area-inset-bottom);
}

.tab-bar-border {
  background-color: rgba(0, 0, 0, 0.33);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  transform: scaleY(0.5);
}

.tab-bar-item {
  flex: 1;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.tab-bar-item cover-image {
  width: 28px;
  height: 28px;
  margin-bottom: 2px;
}

.tab-bar-item cover-view {
  font-size: 10px;
}

4、組件的index.js結構如下:

// pages/components/tabBar/index.js
Component({
  /**
 1. 組件的屬性列表
   */
  options: {
    multipleSlots: true //在組件定義時的選項中啟用多slot支持
  },
  properties: {
    list: {
      type: Array,
      value: []
    },
    selectedColor:{
      type: String,
      value:''
    },
    color:{
      type: String,
      value:''
    },
  },

  /**
 2. 組件的初始數據
   */
  data: {
    tabbarIndex: 0//默認顯示第一個tab元素
  },

  lifetimes: {
    attached() {}
  },

  /**
 3. 組件的方法列表
   */
  methods: {
    //組件的點擊事件
    tabChange(e) {
      //獲取到底部欄元素的下標
      let index = e.currentTarget.dataset.index;
      this.setData({
        tabbarIndex:index,
      })
      //triggerEvent獲取組件的事件
      //onMyEvent 頁面傳過來的點擊事件名稱
      this.triggerEvent('onMyEvent',{
        tabbarIndex:index,
      })
    },
  }
})

5、組件的index.json結構如下:

{
  "component": true,
  "usingComponents": {}
}

6、組件在頁面中的使用
7、頁面的json代碼如下:

{
  "navigationBarTitleText": "測試",
  "usingComponents": {
    "mp-tabbar": "../components/tabBar/index"
  }
}

8、頁面的wxml代碼如下:

//當選中tab1時頁面顯示的內容
<view wx:if="{{tabbarIndex == 0}}">111111</view>
//當選中tab2時頁面顯示的內容
<view wx:if="{{tabbarIndex == 1}}">222222</view>
//當選中tab3時頁面顯示的內容
<view wx:if="{{tabbarIndex == 2}}">333333</view>
<mp-tabbar list="{{list}}" id='tabComponent' bind:onMyEvent="tabChange"></mp-tabbar>

9、頁面的js代碼如下:

Page({
  data: {
    tabbarIndex:0,//默認第一個tab元素
    color: "#555555",
    selectedColor: "#2ea7e0",
    //底部欄
    list: [{
        "text": "市場",
        "iconPath": "/images/bazaar.png",
        "selectedIconPath": "/images/bazaar_selected.png",
      },
      {
        "text": "充值",
        "iconPath": "/images/recharge.png",
        "selectedIconPath": "/images/recharge_selected.png",
      }, {
        "text": "車隊",
        "iconPath": "/images/market.png",
        "selectedIconPath": "/images/market_selected.png",
      }
    ]
  },
  /**
   * 生命周期函數--監聽頁面顯示
   */
  onShow: function () {
    this.tabComponent = this.selectComponent('#tabComponent');
    let selectedColor = this.data.selectedColor;
    let color = this.data.color;
    this.tabComponent.setData({
      selectedColor: selectedColor,
      color:color
   })
   console.log(this.tabComponent.data.tabbarIndex)
  },
  //獲取組件傳遞出來的數據
  tabChange:function(e){
    let index = e.detail.tabbarIndex;
    this.setData({
      tabbarIndex:index
    })
    console.log(e.detail.tabbarIndex)
  }
})

到此,關于“小程序怎么自定義tabBar組件封裝”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

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

AI

象州县| 定陶县| 江孜县| 枣阳市| 西林县| 泾阳县| 石家庄市| 永靖县| 南漳县| 瑞丽市| 秭归县| 浮梁县| 阿尔山市| 淮南市| 道真| 新宾| 雷州市| 丹阳市| 乐安县| 棋牌| 余干县| 平安县| 吴川市| 申扎县| 宜都市| 孝感市| 钟祥市| 邵武市| 珠海市| 内乡县| 驻马店市| 仙桃市| 开远市| 普宁市| 淄博市| 九江县| 湖北省| 本溪市| 榆树市| 泌阳县| 常德市|