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

42 lines
541 B

2 months ago
  1. <template>
  2. <view class="page">
  3. <navbar title="会员"
  4. :leftClick="leftClick"
  5. @leftClick="$utils.navigateBack"
  6. />
  7. <tabber select="member" />
  8. </view>
  9. </template>
  10. <script>
  11. import tabber from '@/components/base/tabbar.vue'
  12. import { mapState } from 'vuex'
  13. export default {
  14. components: {
  15. tabber,
  16. },
  17. data() {
  18. return {
  19. };
  20. },
  21. computed : {
  22. },
  23. onLoad({leftClick}) {
  24. },
  25. onShow() {
  26. },
  27. }
  28. </script>
  29. <style lang="scss">
  30. .page {
  31. min-height: 100vh;
  32. color: #F3F3F3;
  33. z-index: 0;
  34. }
  35. </style>