index.vue 768 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <template>
  2. <view class="page" :style="{'height':(h-th)+'px'}">
  3. <c-nav-bar title="我的" bgColor="transparent" :titleStyle="titleStyle" :showIcon="false"></c-nav-bar>
  4. <view class="bg"></view>
  5. <Tabbar :tabbarIndex="3"></Tabbar>
  6. </view>
  7. </template>
  8. <script>
  9. export default {
  10. data() {
  11. return {
  12. titleStyle: {
  13. fontSize: '34rpx',
  14. fontWeight: "bold",
  15. color: '#FFFFFF'
  16. }
  17. }
  18. },
  19. methods: {
  20. }
  21. }
  22. </script>
  23. <style scoped lang="less">
  24. .page{
  25. background: #F3F4F4;
  26. padding-bottom: 40rpx;
  27. box-sizing: border-box;
  28. overflow-y: auto;
  29. .bg{
  30. width: 100%;
  31. height: 412rpx;
  32. background: url(https://i.ringzle.com/file/20240107/fc66824bcef14a3b9e19f8b966a128c7.png) no-repeat;
  33. background-size: 100% 100%;
  34. }
  35. }
  36. </style>