自定义小程序头部

一般情况系下是默认的,先去把头部风格设为自定义

 

 因为这个头很多地方都用到,所以封装一下他

<template>
    <view class="head">
        <view class="icon" v-if="icon">
            <text class="iconfont iconzuojiantou-copy" @tap="handletoBack"></text> |
            <text class="iconfont iconshouye" @tap="handletoHome"></text>
        </view>
        {{title}}
    </view>
</template>

<script>
    export default {
        name:"musichead",
        props:['title','icon'],
        data() {
            return {
                
            };
        },
        methods:{
            handletoBack(){
                uni.navigateBack(OBJECT)
            },
            handletoHome(){
                uni.navigateTo({
                    url:'/pages/index/index'
                })
            }
        }
    }
</script>

<style scoped>
.head{
    height: 75px;
    width: 100%;
    background-color: #007AFF;
    font-size: 16px;
    line-height: 80px;
    text-align: center;
    position: relative;
}
.icon{
    position: absolute;
    left:9px;
    height: 25px;
    width: 90px;
    top:29px;
    background: rgb(0,0,0,0.4);
    line-height: 25px;
    color: white;
    border-radius: 15px;
    display: flex;
    justify-content: space-evenly;
}
</style>

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值