roamfuding-xcx/page_user/upload.vue

38 lines
572 B
Vue
Raw Permalink Normal View History

2025-12-20 14:32:28 +08:00
<template>
2025-11-08 11:21:57 +08:00
<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() {
},
methods: {
}
}
</script>
2025-12-20 14:32:28 +08:00
<style lang="less">
2025-11-08 11:21:57 +08:00
::v-deep .u-icon__icon,
::v-deep .u-title{
padding-bottom: 22rpx !important;
}
page {
background: #fff;
}
2025-12-20 14:32:28 +08:00
<style>