index.vue 498 B

1234567891011121314151617181920212223242526
  1. <template>
  2. <Theme>
  3. <view class="wrap">
  4. 运输
  5. </view>
  6. <Tabbar page="Commission" />
  7. </Theme>
  8. </template>
  9. <script setup>
  10. import Tabbar from '@/components/tabbar';
  11. import { computed } from 'vue'
  12. import { useUserStore } from "@/store"
  13. const useUser = useUserStore();
  14. const userInfo = computed(() => useUser.getuserInfo)
  15. uni.hideTabBar();
  16. </script>
  17. <style lang="less" scoped>
  18. .wrap {
  19. background: var(--bg);
  20. min-height: calc(100vh - 50px);
  21. padding-bottom: 50px;
  22. }
  23. </style>