baodeng_xcx/page_shanghu/about.vue
2025-05-14 15:14:12 +08:00

38 lines
632 B
Vue

<template>
<view class="page">
<u-navbar :title="tit" :border-bottom="false" :background="bgc" back-icon-color="#262B37" title-color='#262B37'
title-size='36' height='36' id="navbar">
</u-navbar>
<view class="" style="width: 700rpx;margin: auto;">
{{tit}}
</view>
</view>
</template>
<script>
export default {
data() {
return {
bgc: {
backgroundColor: "#fff",
},
tit:''
}
},
onLoad(option) {
this.tit = option.tit
},
methods: {
}
}
</script>
<style lang="scss">
page {
background: #fff;
}
</style>