推广小程序前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
769 B

7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
  1. <template>
  2. <view class="page">
  3. <view class="head-box"></view>
  4. <uv-navbar title=" " bgColor="transparent" height="100rpx"></uv-navbar>
  5. <view class="content">
  6. 123
  7. </view>
  8. <tabber select="home" />
  9. </view>
  10. </template>
  11. <script>
  12. import tabber from '@/components/base/tabbar.vue'
  13. export default {
  14. components:{
  15. tabber
  16. },
  17. data() {
  18. return {
  19. }
  20. }
  21. }
  22. </script>
  23. <style lang="scss">
  24. page {
  25. background-color: #060504;
  26. }
  27. </style>
  28. <style scoped lang="scss">
  29. .page {
  30. .head-box {
  31. background: url('@/static/image/nav-bg.png') no-repeat;
  32. background-size: 100% 100%;
  33. width: 100%;
  34. height: 534rpx;
  35. position: absolute;
  36. }
  37. .content {
  38. color: #fff;
  39. padding-top: calc(var(--status-bar-height) + 100rpx);
  40. }
  41. }
  42. </style>