uni-app實現頂部導航欄顯示按鈕+搜索框

最近公司準備作app,最終決定使用uni-app框架開發,可是當把設計圖給個人時候我內心有點沒底,由於他的設計圖頂部長成這個樣子:css

 

由於這個功能在小程序是根本沒法實現的,可能受這個影響,我感受好像實現不了,可是我仍是回頭看了看文檔,才發現,這個功能是能夠實現的,只須要在pages.json中作一些配置便可html

這個在官方稱做app-plus,能夠自定義導航區域,具體配置以下:html5

"pages": [
        {
            "path": "pages/index/index",
            "style": {
                "navigationBarBackgroundColor": "#00c170",
                "app-plus": {
                    "bounce": "none",
                    "titleNView": {
                        "buttons": [ 
                            {
                                "text": "地圖", 
                                "fontSize":"16",
                                "float": "right",
                                "color":"#fff"
                            },
                            {
                                "text": "唐山", 
                                "fontSize":"16",
                                "float": "left",
                                "color":"#fff"
                            }
                        ],
                        "searchInput":{
                                "align": "center",
                                "placeholder": "請輸入查找房源信息",
                                "borderRadius":"50upx",
                                "backgroundColor": "#fff"
                            }
                    }
                }
            }
        }
]

 

效果以下:web

 

你可能會問,個人點擊事件和輸入框事件如何監聽?json

uni-app給出了相應的api,onNavigationBarButtonTaponNavigationBarSearchInputChanged,寫在響應的頁面中便可:小程序

 

    export default {
        onNavigationBarButtonTap() {
            console.log("你點擊了按鈕")
        },
        onNavigationBarSearchInputChanged () {
            console.log("你輸入了信息")
        }
}

打印結果:api

 

可是按鈕有兩個,只有一個按鈕事件怎麼辦?還有輸入框的文字如何獲取?其實這兩個函數接收一個值,就是相對應的信息:app

export default {
    onNavigationBarButtonTap(val) {
        console.log(val)
    },
    onNavigationBarSearchInputChanged (val) {
        console.log(val)
    }    
}

打印結果:框架

 

按鈕事件根據對應的text判斷便可,而輸入框監聽的不是change事件,是input事件,即輸入後便可監聽到而不是失焦函數

 

詳細配置可查閱官方文檔: 傳送門

若是還不夠詳細,來這裏

 

你覺得這就完了?NoNoNo,眼尖的同窗發現我作的和設計圖仍是有區別的,右邊地圖有一個icon我沒有寫,若是按照上邊的方法是不能加的,可是咱們能夠去掉導航欄自定義

page.json裏每一個頁面的導航欄是默認開啓的,有一個navigationStyle屬性,默認值是default,咱們把它改爲custom就能把他去掉了:

{
  "path": "pages/index/index",
  "style": {
     "navigationStyle":"custom"
}

可是  移動端導航依然在,這就須要咱們使用 titleNView這個屬性了,它是用來專門設置導航欄的,具體以下:

{
            "path" : "pages/secondPage/secondPage",
            "style" : {
                "navigationStyle": "custom",
                "app-plus": {  
                    "titleNView": false  
                }
            }
        }

而後咱們本身就能夠寫一套導航了,最後效果以下:

 

 這裏有一個坑,除了要給這個導航設置固定定位外,實際上手機最上方的狀態欄,也就是這個位置是透明的,由於咱們把默認的導航去掉了:

 

 

因此咱們在寫導航的時候上方的內邊距是比下方的要大那麼一點,這樣才能保證覆蓋狀態欄。

下面是我寫的源碼:

<template>
    <view class="head">
        <view class="header-wrap">
            <view class="index-header">
                <text class="address" v-if="leftWords">{{leftWords}}</text>
                <view class="input-wrap" v-if="input">
                    <input type="text" 
                           placeholder="請輸入搜索"
                            v-model="value"
                           @change="inputChange"/>
                    <text class="iconfont iconfangdajing"></text>
                </view>
                <view class="map-wrap"
                      v-if="rightWords||rightIcon"
                      @click="rightClick">
                    <text class="iconfont" :class="rightIcon"></text>
                    <text>{{rightWords}}</text>
                </view>
            </view>
        </view>
        <view class="blank"></view>

    </view>
</template>

<script>
    export default {
        name: "IndexHeader",
        props: [
            'leftWords',
            'input',
            'rightIcon',
            'rightWords'
        ],
        data () {
            return {
                value: ''
            }
        },
        methods: {
            inputChange: function () {
                this.$emit('change',this.value)
            },
            rightClick: function () {
                this.$emit("rightClick")
            }
        }
    }
</script>

<style lang="scss">
    $color-base: #00c16f; 
    $words-color-base: #333333;
    $words-color-light: #999999; 
    .header-wrap {
        width: 100%;
        position: fixed;
        top: 0;
        z-index: 999;
        
        .index-header {
            height: 88upx;
            line-height: 88upx;
            padding: 0 30upx;
            padding-top: 40upx;
            background-color: $color-base;
            font-size: 28upx;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: space-between;
            
            .address {
                font-size: 26upx;
            }
            
            .input-wrap {
                width: 500upx;
                height: 70upx;
                padding: 10upx 30upx 10upx 100upx;
                box-sizing: border-box;
                background-color: #fff;
                border-radius: 50upx;
                color: $words-color-base;
                position: relative;
                
                text {
                    position: absolute;
                    left: 40upx;
                    top: -8upx;
                    color: $words-color-light;
                    font-size: 30upx;
                }
            }
            
            .map-wrap {
                .iconfont {
                    font-size: 32upx;
                    margin-right: 5upx;
                }
                text {
                    font-size: 26upx;
                }
            }    
        }
    }
    .blank {
        height: 126upx;
    }
</style>
相關文章
相關標籤/搜索