roamfuding-xcx/page_user/sousuo/sousuocont.vue

39 lines
610 B
Vue
Raw Normal View History

2025-11-11 09:37:46 +08:00
<template>
<view class="page">
<u-navbar title="标题" :border-bottom="false" :background="bgc" back-icon-color="#262B37" title-color='#262B37'
title-size='36' height='46' id="navbar">
</u-navbar>
</view>
</template>
<script>
export default {
data() {
return {
bgc: {
backgroundColor: "#fff",
},
}
},
onLoad(option) {
console.log(option);
},
methods: {
}
}
</script>
<style lang="scss">
::v-deep .u-icon__icon,
::v-deep .u-title{
padding-bottom: 22rpx !important;
}
page {
background: #fff;
}
</style>