推广小程序前端代码
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.

40 lines
551 B

5 months ago
  1. <template>
  2. <view class="page">
  3. <navbar bgColor="#88D259" />
  4. <!-- <PrivacyAgreementPoup /> -->
  5. <tabber select="home" />
  6. </view>
  7. </template>
  8. <script>
  9. import tabber from '@/components/base/tabbar.vue'
  10. export default {
  11. components:{
  12. tabber
  13. },
  14. data() {
  15. return {
  16. }
  17. }
  18. }
  19. </script>
  20. <style scoped lang="scss">
  21. .page {
  22. position: relative;
  23. .bg-color {
  24. width: 100%;
  25. position: absolute;
  26. top: 0;
  27. left: 0;
  28. height: 550rpx;
  29. background: linear-gradient(to bottom, #88D259, #88D259, #fff);
  30. }
  31. }
  32. </style>