index.vue 414 B

123456789101112131415161718
  1. <script setup>
  2. import myApplyFor from './myApplyFor/index.vue'
  3. import myAuditFor from './myAuditFor/index.vue'
  4. </script>
  5. <template>
  6. <div>
  7. <van-tabs :sticky="true">
  8. <van-tab title="我申请的">
  9. <myApplyFor />
  10. </van-tab>
  11. <van-tab title="我审核的">
  12. <myAuditFor />
  13. </van-tab>
  14. </van-tabs>
  15. </div>
  16. </template>