uniapp自定義底部導(dǎo)航欄tabBar

在使用uniapp開(kāi)發(fā)產(chǎn)品的時(shí)候烟零,官方的tabBar總是滿(mǎn)足不了設(shè)計(jì)稿上面的要求钱床。通常這時(shí)候都會(huì)自定義tabBar吼畏,但是自定義會(huì)犧牲一些用戶(hù)體驗(yàn),比如在切換的時(shí)候tabBar會(huì)閃爍蛤签,特別是用戶(hù)的硬件不太高端的時(shí)候閃爍得更加明顯,還有自定義tabBar使用uni.redirectTo的話(huà)切換頁(yè)面每次都會(huì)調(diào)用onLoad栅哀,頁(yè)面數(shù)據(jù)得不到緩存震肮。

既然這樣我嘗試使用了官方tabBar的同時(shí)使用自定義的tabBar,就是在tabBar頁(yè)面使用uni.hideTabBar({})將官方的tabBar隱藏留拾,但是有一個(gè)小缺點(diǎn)就是打開(kāi)小程序時(shí)并且首屏是tabBar頁(yè)面會(huì)先隱藏官方tabBar再讓自定義tabBar回到底部戳晌,不過(guò)沒(méi)有關(guān)系。

首先先在pages.josn中把需要tabBar設(shè)置好:只需要將頁(yè)面路徑放進(jìn)去就可以

"tabBar": {
        "selectedColor":"#79D5AD",
        "color": "#999999",
        "backgroundColor":"#ffffff",
        "borderStyle": "white",
        "height":"0px",
        "list": [{
            "pagePath":"pages/activity/activity",
            "text": " "
        },{
            "pagePath":"pages/recommendation/recommendation",
            "text": " "
        },{
            "pagePath":"pages/message/message",
            "text": " "
        },{
            "pagePath":"pages/user/user",
            "text": " "
        }]
}

下面就是tabBar組件:這樣就可以使用uni.switchTab({})路由切換tabBar頁(yè)面痴柔,:style="{'padding-bottom': paddingBottomHeight + 'rpx'}"是給iphone X以上的手機(jī)tabBar適配了一個(gè)padding-bottom沦偎;

<template>
    <cover-view class="tabbar" :style="{'padding-bottom': paddingBottomHeight + 'rpx'}">
        <cover-view class="tabbar-item"
            v-for="(item, index) in list" 
            :key="index" 
            @click="tabbarChange(item.path)"
        >
            <cover-image class="item-img" :src="item.icon_a" v-if="current == index"></cover-image>
            <cover-image class="item-img" :src="item.icon" v-else></cover-image>
            <cover-view class="item-name" :class="{'tabbarActive': current == index}" v-if="item.text">{{item.text}}</cover-view>
        </cover-view>
    </cover-view>
</template>

<script>
export default {
    props: {
        current: String
    },
    data() {
        return {
            paddingBottomHeight: 0,  //蘋(píng)果X以上手機(jī)底部適配高度
            list: [{
                    text: '首頁(yè)',  
                    icon: '/static/images/home.png',  //未選中圖標(biāo)
                    icon_a: '/static/images/home_i.png',  //選中圖片
                    path: "activity",  //頁(yè)面路徑
                },{
                    text: '分類(lèi)',
                    icon: '/static/images/classify.png',
                    icon_a: '/static/images/classify_i.png',
                    path: "recommendation",
                }
                ,{
                    text: '訂單',
                    icon: '/static/images/order.png',
                    icon_a: '/static/images/order_i.png',
                    path: 'message',
                },{
                    text: '我的',
                    icon: '/static/images/me.png',
                    icon_a: '/static/images/me_i.png',
                    path: "user",
                },
            ]
        };
    },
    created() {
        let that = this;
        uni.getSystemInfo({
            success: function (res) {
                let model = ['X', 'XR', 'XS', '11', '12', '13', '14', '15'];
                model.forEach(item => {
                    //適配iphoneX以上的底部,給tabbar一定高度的padding-bottom
                    if(res.model.indexOf(item) != -1 && res.model.indexOf('iPhone') != -1) {
                        that.paddingBottomHeight = 40;
                    }
                })
            }
        });
    },
    methods: {
        tabbarChange(path) {
            uni.switchTab({
                url: path
            })
        }
    }
};

下面使用tabBar頁(yè)面引入自定義tabBar組件:記得加上uni.hideTabBar({})把官方tabBar隱藏

<template>
    <view>
        <view-tabbar :current="0"></view-tabbar>
    </view>
</template>

<script>
    import Tabbar from '@/components/tabbar.vue'
    export default {
        components: {
            'view-tabbar': Tabbar
        }, 
        onShow() {
            uni.hideTabBar({
                animation: false
            })
        },
    }
</script>
iphone X以下和安卓端的效果

iphone X以上的效果

最后上組件的完整代碼:

<template>
    <cover-view class="tabbar" :style="{'padding-bottom': paddingBottomHeight + 'rpx'}">
        <cover-view class="tabbar-item"
            v-for="(item, index) in list" 
            :key="index" 
            @click="tabbarChange(item.path)"
        >
            <cover-image class="item-img" :src="item.icon_a" v-if="current == index"></cover-image>
            <cover-image class="item-img" :src="item.icon" v-else></cover-image>
            <cover-view class="item-name" :class="{'tabbarActive': current == index}" v-if="item.text">{{item.text}}</cover-view>
        </cover-view>
    </cover-view>
</template>

<script>
export default {
    props: {
        current: String
    },
    data() {
        return {
            paddingBottomHeight: 0,  //蘋(píng)果X以上手機(jī)底部適配高度
            list: [{
                    text: '首頁(yè)',  
                    icon: '/static/images/home.png',  //未選中圖標(biāo)
                    icon_a: '/static/images/home_i.png',  //選中圖片
                    path: "activity",  //頁(yè)面路徑
                },{
                    text: '分類(lèi)',
                    icon: '/static/images/classify.png',
                    icon_a: '/static/images/classify_i.png',
                    path: "recommendation",
                }
                ,{
                    text: '訂單',
                    icon: '/static/images/order.png',
                    icon_a: '/static/images/order_i.png',
                    path: 'message',
                },{
                    text: '我的',
                    icon: '/static/images/me.png',
                    icon_a: '/static/images/me_i.png',
                    path: "user",
                },
            ]
        };
    },
    created() {
        let that = this;
        uni.getSystemInfo({
            success: function (res) {
                let model = ['X', 'XR', 'XS', '11', '12', '13', '14', '15'];
                model.forEach(item => {
                    //適配iphoneX以上的底部,給tabbar一定高度的padding-bottom
                    if(res.model.indexOf(item) != -1 && res.model.indexOf('iPhone') != -1) {
                        that.paddingBottomHeight = 40;
                    }
                })
            }
        });
    },
    watch: {
        
    },
    methods: {
        tabbarChange(path) {
            uni.switchTab({
                url: path
            })
        }
    }
};
</script>

<style lang="scss" scoped>
    .tabbarActive{
        color: #79D5AD !important;
    }
    .tabbar{
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        display: flex;
        justify-content: space-around;
        align-items: center;
        width: 100%;
        height: 100rpx;
                background-color: #ffffff;
        .tabbar-item{
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100rpx;
            .item-img{
                margin-bottom: 4rpx;
                width: 46rpx;
                height: 46rpx;
            }
            .item-name{
                font-size: 26rpx;
                color: #A3A3A3;
            }
        }
    }
</style>
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末豪嚎,一起剝皮案震驚了整個(gè)濱河市搔驼,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌侈询,老刑警劉巖舌涨,帶你破解...
    沈念sama閱讀 206,214評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異扔字,居然都是意外死亡泼菌,警方通過(guò)查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,307評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門(mén)啦租,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)哗伯,“玉大人,你說(shuō)我怎么就攤上這事篷角『干玻” “怎么了?”我有些...
    開(kāi)封第一講書(shū)人閱讀 152,543評(píng)論 0 341
  • 文/不壞的土叔 我叫張陵恳蹲,是天一觀(guān)的道長(zhǎng)虐块。 經(jīng)常有香客問(wèn)我,道長(zhǎng)嘉蕾,這世上最難降的妖魔是什么贺奠? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 55,221評(píng)論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮错忱,結(jié)果婚禮上儡率,老公的妹妹穿的比我還像新娘。我一直安慰自己以清,他們只是感情好儿普,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,224評(píng)論 5 371
  • 文/花漫 我一把揭開(kāi)白布。 她就那樣靜靜地躺著掷倔,像睡著了一般眉孩。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上勒葱,一...
    開(kāi)封第一講書(shū)人閱讀 49,007評(píng)論 1 284
  • 那天浪汪,我揣著相機(jī)與錄音,去河邊找鬼凛虽。 笑死死遭,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的涩维。 我是一名探鬼主播殃姓,決...
    沈念sama閱讀 38,313評(píng)論 3 399
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼袁波,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來(lái)了蜗侈?” 一聲冷哼從身側(cè)響起篷牌,我...
    開(kāi)封第一講書(shū)人閱讀 36,956評(píng)論 0 259
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎踏幻,沒(méi)想到半個(gè)月后枷颊,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,441評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡该面,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,925評(píng)論 2 323
  • 正文 我和宋清朗相戀三年夭苗,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片隔缀。...
    茶點(diǎn)故事閱讀 38,018評(píng)論 1 333
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡题造,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出猾瘸,到底是詐尸還是另有隱情界赔,我是刑警寧澤,帶...
    沈念sama閱讀 33,685評(píng)論 4 322
  • 正文 年R本政府宣布牵触,位于F島的核電站淮悼,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏揽思。R本人自食惡果不足惜袜腥,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,234評(píng)論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望钉汗。 院中可真熱鬧羹令,春花似錦、人聲如沸儡湾。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,240評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)徐钠。三九已至,卻和暖如春役首,著一層夾襖步出監(jiān)牢的瞬間尝丐,已是汗流浹背。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 31,464評(píng)論 1 261
  • 我被黑心中介騙來(lái)泰國(guó)打工衡奥, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留爹袁,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 45,467評(píng)論 2 352
  • 正文 我出身青樓矮固,卻偏偏與公主長(zhǎng)得像失息,于是被迫代替她去往敵國(guó)和親譬淳。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,762評(píng)論 2 345

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