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.

61 lines
880 B

<template>
<view>
<u-navbar :height="height" :is-back="isBack" back-icon-color="#fff" :back-icon-name="backIconName"
:back-text="backText" :back-text-style="backTextStyle" :title="title" :background="background"></u-navbar>
</view>
</template>
<script>
export default {
props: {
height: {
type: Number,
default: 60
},
isBack: {
type: Boolean,
default: false
},
backIconName: {
type: String,
default: "arrow-leftward"
},
backText: {
type: String,
default: ""
},
backTextStyle: {
type: Object,
default: {
color: "#fff"
}
},
title: {
type: String,
default: " "
},
background: {
type: Object,
default: {
backgroundColor: "#1479FF"
}
}
},
data() {
return {
}
},
methods: {
},
computed: {
},
}
</script>
<style lang="scss">
</style>