MPVUE微信小程序自定義navBar和tabBar并適配

tabBar

<template>
  <div class="tabbar-wrap"
       :style="{paddingBottom:tabBarHeight}">
    <!-- 適配蘋果手機嘉抓,底部安全距離 -->
    <ul>
      <li class="tabbar-item"
          v-for="(item, index) in navList"
          :key="index"
          @click="selectNavItem(index, item.pagePath)"
          :class="item.isSpecial ? 'wrapSpecial':''">
        <!-- 購物車小紅點 -->
        <!-- 未選中樣式 -->
        <p class="tabbar-icon"
           :class="(index==1&&isShowDots>0)? 'showDot-box':''">
          <span class="showDot"
                v-if="index==1&&isShowDots>0">{{isShowDots>99? '99+' : isShowDots}}</span>
          <img alt="tabbar-icon"
               mode="aspectFill"
               :src="selectNavIndex == index? item.selectedIconPath : item.iconPath"
               :class="item.isSpecial ? 'imgSpecial':''">
        </p>
        <!-- 選中樣式-->
        <p class="tabbar-text active-tabbar"
           :style="{color:selectedColor, fontWeight: 550}"
           v-if="selectNavIndex == index">{{item.text}}</p>
        <p class="tabbar-text"
           :style="{color:colors}"
           v-else>{{item.text}}</p>
      </li>
    </ul>
  </div>
</template>

<script>
export default {
  props: ['selectNavIndex', 'isShowDots'],
  data () {
    return {
      tabBarHeight: 0,
      colors: "#666",
      selectedColor: "#000",
      navList: []
    }
  },
  watch: {
    isShowDots () {//動態(tài)更新購物車數(shù)量
      this.isShowDots = this.isShowDots
    }
  },

  created () {
    let that = this
    that.tabBarHeight = 0
    that.colors = that.globalData.tabbarColor//全局tabBar未選中字體顏色
    that.selectedColor = that.globalData.tabbarActiveColor//全局tabBar選中時字體顏色
    this.buId = parseInt(this.globalData.buId)//buid
    /* 
      tabBar的選中和未選中的圖標和字體顏色都是根據(jù)buId動態(tài)配置的
    */
    this.navList = [
      {
        pagePath: "/pages/home/main",
        iconPath: "/static/images/home-icon.png",
        selectedIconPath: "/static/module" + that.buId + "/tabBar-home-active.png",
        text: "首頁"
      },
      {
        pagePath: "/pages/cart/main",
        iconPath: "/static/images/cat-icon.png",
        selectedIconPath: "/static/module" + that.buId + "/tabBar-cat-active.png",
        text: "購物車"
      },
      {
        pagePath: "/pages/personal/main",
        iconPath: "/static/images/person-icon.png",
        selectedIconPath: "/static/module" + that.buId + "/tabBar-person-active.png",
        text: "我的"
      }
    ],

      wx.getSystemInfo({
        success: res => {
          // 獲取手機的底部安全距離
          that.tabBarHeight = 0
          that.tabBarHeight = res.screenHeight - res.safeArea.bottom + 'px';
        }
      })
  },
  methods: {
    /**
     * 點擊導航欄
     */
    selectNavItem (index, pagePath) {
      if (index === this.selectNavIndex) {
        return false;
      }
      this.bindNavigateTo(pagePath);
    },

    /**
     * 路由跳轉(zhuǎn)
     */
    bindNavigateTo (url) {
      wx.switchTab({
        url
      })
    },
  }

}
</script>

導航欄

<template>
  <div class="comp-navbar">
    <!-- 導航欄主體 -->
    <cover-view class="navbar"
                :style="{height: navBarHeight + 'px'}">
      <!-- 狀態(tài)欄 -->
      <cover-view class="nav-statusbar"
                  :style="{height: statusBarHeight + 'px'}"></cover-view>
      <!-- 標題欄 -->
      <cover-view class="nav-titlebar"
                  :style="{height: titleBarHeight + 'px' }">
        <!-- home及后退鍵 -->
        <cover-view class="bar-options">
          <cover-image class="nav-icon"
                       mode="aspectFill"
                       @click="backClick"
                       src="/static/images/arrow-left.png"></cover-image>
        </cover-view>
        <!-- 導購信息 -->
        <cover-view class="guide-box"
                    v-if="guideInfo.name">
          <cover-image mode="aspectFill"
                       class="guide-img"
                       style="width: 29px;height: 29px;"
                       :src="guideInfo.idPic?guideInfo.idPic:guideInfo.pic"></cover-image>
          <cover-view class="guide-p">來自{{guideInfo.name}}的推薦</cover-view>
        </cover-view>
        
      </cover-view>
    </cover-view>
  </div>
</template>


 //適配蘋果手機安全距離
  beforeMount () {
    const self = this;
    wx.getSystemInfo({
      success (system) {
        self.statusBarHeight = system.statusBarHeight;
        self.titleBarHeight = 48;
        self.navBarHeight = self.statusBarHeight + self.titleBarHeight;
      }
    });
  },

    backClick () {
    // 如果是分享進來的沒有歷史路由就返回首頁,否則就返回上一頁
      if (getCurrentPages().length == 1) {
        wx.switchTab({
          url: this.homePath
        })
      } else {
        wx.navigateBack({
          delta: 1
        })
      }
    },

?著作權歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末锋恬,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌券勺,老刑警劉巖,帶你破解...
    沈念sama閱讀 207,113評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異,居然都是意外死亡舶沿,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,644評論 2 381
  • 文/潘曉璐 我一進店門配并,熙熙樓的掌柜王于貴愁眉苦臉地迎上來括荡,“玉大人,你說我怎么就攤上這事溉旋』澹” “怎么了?”我有些...
    開封第一講書人閱讀 153,340評論 0 344
  • 文/不壞的土叔 我叫張陵低滩,是天一觀的道長召夹。 經(jīng)常有香客問我岩喷,道長恕沫,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,449評論 1 279
  • 正文 為了忘掉前任纱意,我火速辦了婚禮婶溯,結果婚禮上,老公的妹妹穿的比我還像新娘。我一直安慰自己迄委,他們只是感情好褐筛,可當我...
    茶點故事閱讀 64,445評論 5 374
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著叙身,像睡著了一般渔扎。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上信轿,一...
    開封第一講書人閱讀 49,166評論 1 284
  • 那天晃痴,我揣著相機與錄音,去河邊找鬼财忽。 笑死倘核,一個胖子當著我的面吹牛,可吹牛的內(nèi)容都是我干的即彪。 我是一名探鬼主播紧唱,決...
    沈念sama閱讀 38,442評論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼隶校!你這毒婦竟也來了漏益?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,105評論 0 261
  • 序言:老撾萬榮一對情侶失蹤深胳,失蹤者是張志新(化名)和其女友劉穎遭庶,沒想到半個月后,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體稠屠,經(jīng)...
    沈念sama閱讀 43,601評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡峦睡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,066評論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了权埠。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片榨了。...
    茶點故事閱讀 38,161評論 1 334
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖攘蔽,靈堂內(nèi)的尸體忽然破棺而出龙屉,到底是詐尸還是另有隱情,我是刑警寧澤满俗,帶...
    沈念sama閱讀 33,792評論 4 323
  • 正文 年R本政府宣布转捕,位于F島的核電站,受9級特大地震影響唆垃,放射性物質(zhì)發(fā)生泄漏五芝。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,351評論 3 307
  • 文/蒙蒙 一辕万、第九天 我趴在偏房一處隱蔽的房頂上張望枢步。 院中可真熱鬧沉删,春花似錦、人聲如沸醉途。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,352評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽隘擎。三九已至殴穴,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間货葬,已是汗流浹背推正。 一陣腳步聲響...
    開封第一講書人閱讀 31,584評論 1 261
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留宝惰,地道東北人植榕。 一個月前我還...
    沈念sama閱讀 45,618評論 2 355
  • 正文 我出身青樓,卻偏偏與公主長得像尼夺,于是被迫代替她去往敵國和親尊残。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 42,916評論 2 344

推薦閱讀更多精彩內(nèi)容