123456789101112131415161718192021222324252627282930313233343536373839 |
- <template>
- <view class="page" :style="{'height':(h-th)+'px'}">
- <c-nav-bar title="我的" bgColor="transparent" :titleStyle="titleStyle" :showIcon="false"></c-nav-bar>
- <view class="bg"></view>
- <Tabbar :tabbarIndex="3"></Tabbar>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- titleStyle: {
- fontSize: '34rpx',
- fontWeight: "bold",
- color: '#FFFFFF'
- }
- }
- },
- methods: {
-
- }
- }
- </script>
- <style scoped lang="less">
- .page{
- background: #F3F4F4;
- padding-bottom: 40rpx;
- box-sizing: border-box;
- overflow-y: auto;
- .bg{
- width: 100%;
- height: 412rpx;
- background: url(https://i.ringzle.com/file/20240107/fc66824bcef14a3b9e19f8b966a128c7.png) no-repeat;
- background-size: 100% 100%;
- }
- }
- </style>
|