95 lines
2.0 KiB
Vue
95 lines
2.0 KiB
Vue
<template>
|
|
<view>
|
|
<view class="cu-custom " :style="[{height: CustomBar+'px',paddingTop: StatusBar+'px'}]">
|
|
<view class="cu-bar fixed" :style="style" :class="[bgImage!=''?'none-bg text-white bg-img':'',bgColor,isBottom?'solid-bottom':'']">
|
|
<view class="action" @tap="BackPage" v-if="isBack">
|
|
<text class="cuIcon-back"></text>
|
|
<slot name="backText"></slot>
|
|
</view>
|
|
<view class="action" v-if="isBackText">
|
|
<slot name="backText"></slot>
|
|
</view>
|
|
<view class="content" :style="[{top:StatusBar + 'px'}]">
|
|
<slot name="content"></slot>
|
|
</view>
|
|
<view class="right padding-right">
|
|
<slot name="right"></slot>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'fu-custom',
|
|
data() {
|
|
return {
|
|
StatusBar: this.StatusBar,
|
|
CustomBar: this.CustomBar
|
|
};
|
|
},
|
|
// name: 'cu-custom',
|
|
computed: {
|
|
style() {
|
|
var StatusBar= this.StatusBar;
|
|
var CustomBar= this.CustomBar;
|
|
var bgImage = this.bgImage;
|
|
var style = `height:${CustomBar}px;padding-top:${StatusBar}px;`;
|
|
if (this.bgImage) {
|
|
style = `${style}background-image:url(${bgImage});`;
|
|
}
|
|
return style;
|
|
}
|
|
},
|
|
props: {
|
|
bgColor: { //作用在cu-bar上的类
|
|
type: String,
|
|
default: ''
|
|
},
|
|
isBack: { //是否显示返回箭头和左边的文字
|
|
type: [Boolean, String],
|
|
default: false
|
|
},
|
|
isBackText: { //开启显示左边的文字
|
|
type: [Boolean, String],
|
|
default: false
|
|
},
|
|
isFixed: { //是否设置导航高度为 0
|
|
type: [Boolean, String],
|
|
default: false
|
|
},
|
|
bgImage: { //导航背景图片
|
|
type: String,
|
|
default: ''
|
|
},
|
|
home: {
|
|
type: String,
|
|
default: ''
|
|
},
|
|
isBottom:{ //是否添加底部边框线
|
|
type:Boolean,
|
|
default:false
|
|
}
|
|
},
|
|
methods: {
|
|
BackPage() {
|
|
if(this.home == 'share'){
|
|
uni.reLaunch({
|
|
url: '/pages/tabbar/index'
|
|
});
|
|
}else{
|
|
uni.navigateBack({
|
|
delta: 1
|
|
});
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
|
|
|
|
</style>
|