123456789101112131415161718 |
- <script setup>
- import myApplyFor from './myApplyFor/index.vue'
- import myAuditFor from './myAuditFor/index.vue'
- </script>
- <template>
- <div>
- <van-tabs :sticky="true">
- <van-tab title="我申请的">
- <myApplyFor />
- </van-tab>
- <van-tab title="我审核的">
- <myAuditFor />
- </van-tab>
- </van-tabs>
- </div>
- </template>
|