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.
|
|
<template> <view> <view class="cu-custom" :style="[{height:CustomBar + 'px'}]"> <view class="cu-bar fixed" :style="style" :class="[bgImage!=''?'none-bg text-white bg-img':'',bgColor]"> <view class="action" @tap="BackPage" v-if="isBack"> <text class="cuIcon-back"></text> <slot name="backText"></slot> </view> <view class="action"> <slot name="left"></slot> </view> <view class="content" :style="[{top:StatusBar + 'px'}]"> <slot name="content"></slot> </view> <slot name="right"></slot> </view> </view> </view></template>
<script> export default { 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: { type: String, default: 'bg-white' }, isBack: { type: [Boolean, String], default: true }, bgImage: { type: String, default: '' }, }, methods: { BackPage() { // #ifdef H5
window.history.go(-1) // #endif
// #ifndef H5
uni.navigateBack({ delta: 1 }); // #endif
} } }</script>
<style scoped>.bg-img{ background-position: initial !important;}</style>
|