shouye.vue 729 B

1234567891011121314151617181920212223
  1. <template>
  2. <view className="client-shouye-page">
  3. <view class="icon-title-bjcolor-navBar-box">
  4. <text class="nav-bar-title">用户名</text>
  5. </view>
  6. <!-- 考试 -->
  7. <kaoshiCardVue></kaoshiCardVue>
  8. <!-- 练习 -->
  9. <lianxiCardVue></lianxiCardVue>
  10. <!-- 课程 -->
  11. <kechengCardVue></kechengCardVue>
  12. <!-- 底部区域 -->
  13. <customTabbarClient></customTabbarClient>
  14. </view>
  15. </template>
  16. <script setup>
  17. import kaoshiCardVue from '@/components/listCard/kaoshiCard.vue';
  18. import kechengCardVue from '@/components/listCard/kechengCard.vue';
  19. import lianxiCardVue from '@/components/listCard/lianxiCard.vue';
  20. import customTabbarClient from "@/components/custom-tabbar/custom-tabbar-client.vue"
  21. </script>