<template>
|
|
<uv-navbar :leftIconColor="leftIconColor" :autoBack="autoBack" :title="title" :bgColor="bgColor" :leftIconSize="leftIconSize" :height="height" :titleStyle="titleStyle" @leftClick="leftClick"></uv-navbar>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
};
|
|
},
|
|
props: {
|
|
autoBack: {
|
|
type: Boolean,
|
|
default: false,
|
|
required: false
|
|
},
|
|
title: {
|
|
type: String,
|
|
default: '',
|
|
required: false
|
|
},
|
|
bgColor: {
|
|
type: String,
|
|
default: 'transparent',
|
|
required: false
|
|
},
|
|
|
|
leftIconSize: {
|
|
type: String,
|
|
default: '20rpx',
|
|
required: false
|
|
},
|
|
leftIconColor: {
|
|
type: String,
|
|
default: '',
|
|
required: false
|
|
},
|
|
height: {
|
|
type: String,
|
|
default: '100rpx',
|
|
required: false
|
|
},
|
|
titleStyle: {
|
|
type: Object,
|
|
default: {},
|
|
required: false
|
|
},
|
|
autoBack: {
|
|
type: Boolean,
|
|
default: false,
|
|
required: false
|
|
},
|
|
},
|
|
components: {
|
|
|
|
},
|
|
computed: {
|
|
|
|
},
|
|
watch: {
|
|
|
|
},
|
|
created() {
|
|
|
|
},
|
|
mounted() {
|
|
|
|
},
|
|
methods: {
|
|
leftClick() {}
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
</style>
|