You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
110 lines
2.1 KiB
110 lines
2.1 KiB
2 years ago
|
<template>
|
||
|
<view class="nav_abr" :style="{background:bgColor}">
|
||
|
<view class="status_bar" :style="'height: '+ statusBarHeight"></view>
|
||
|
<view class="toBar" :style="'height:'+toBarHeight">
|
||
|
<block v-if="showLeft == true">
|
||
|
<image src="/static/images/home/lefts.png" v-if="leftBg == true" class="left_img" @tap="toback"></image>
|
||
|
<text class="iconfont icon-fanhui left_icon" @tap="toback" v-if="leftBg == false" style="color: #202020;"></text>
|
||
|
</block>
|
||
|
<!-- #ifndef H5 -->
|
||
|
<text class="title" :style="'color:' + textcolor" v-if="showTitle == true">{{navTitle}}</text>
|
||
|
<!-- #endif -->
|
||
|
<!-- #ifdef H5 -->
|
||
|
<text class="title bolds" :style="'color:' + textcolor" v-if="showTitle == true">{{navTitle}}</text>
|
||
|
<!-- #endif -->
|
||
|
</view>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
const app = getApp();
|
||
|
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
statusBarHeight: app.globalData.statusHeight + 'px',
|
||
|
toBarHeight: app.globalData.toBar + 'px'
|
||
|
};
|
||
|
},
|
||
|
|
||
|
components: {},
|
||
|
props: {
|
||
|
textcolor: {
|
||
|
type: String,
|
||
|
default: '#fff'
|
||
|
},
|
||
|
bgColor:{
|
||
|
type:String,
|
||
|
default:''
|
||
|
},
|
||
|
showTitle: {
|
||
|
type: Boolean,
|
||
|
default: true
|
||
|
},
|
||
|
showLeft: {
|
||
|
type: Boolean,
|
||
|
default: false
|
||
|
},
|
||
|
navTitle: {
|
||
|
type: String,
|
||
|
default: '登录'
|
||
|
},
|
||
|
leftBg:{
|
||
|
type: Boolean,
|
||
|
default: true
|
||
|
}
|
||
|
},
|
||
|
methods: {
|
||
|
toback() {
|
||
|
uni.navigateBack({
|
||
|
delta: 1
|
||
|
});
|
||
|
}
|
||
|
|
||
|
}
|
||
|
};
|
||
|
</script>
|
||
|
<style lang="scss" scoped>
|
||
|
.status_bar{
|
||
|
width: 100vw;
|
||
|
overflow: hidden;
|
||
|
display: block;
|
||
|
}
|
||
|
.toBar{
|
||
|
width: 100vw;
|
||
|
position: relative;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
}
|
||
|
.left_icon{
|
||
|
font-size: 32upx;
|
||
|
position: absolute;
|
||
|
left: 20upx;
|
||
|
font-weight: 500;
|
||
|
width: 50upx;
|
||
|
height: 50upx;
|
||
|
line-height: 50upx;
|
||
|
}
|
||
|
.toBar .title{
|
||
|
text-align: center;
|
||
|
color: #fff;
|
||
|
font-size: 30upx;
|
||
|
display: block;
|
||
|
margin: 0 auto;
|
||
|
}
|
||
|
.left_img{
|
||
|
width: 50upx;
|
||
|
height: 50upx;
|
||
|
position: absolute;
|
||
|
padding: 10upx;
|
||
|
left: 20upx;
|
||
|
top: 50%;
|
||
|
transform: translateY(-50%);
|
||
|
z-index: 100;
|
||
|
background-color: rgba(0, 0, 0, 0.4);
|
||
|
border-radius: 50%;
|
||
|
}
|
||
|
.bolds{
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
</style>
|