123456789101112131415161718192021222324252627282930313233343536 |
- <template>
- <custom-scroll-list :refreshFn="getExamList" :tabList="tabData" :defaultTab="1">
- <template #default="{list}">
- <scroll-list-card v-for="(item,index) in list" :key="item.ksId" :data="item" ></scroll-list-card>
- </template>
- </custom-scroll-list>
- </template>
- <script setup>
- import {
- getExamList
- } from "@/api/exam.js";
- import {
- // onLoad,
- onReady,
-
- } from "@dcloudio/uni-app"
- import {
- reactive,
- ref
- } from "vue";
- const tabData = [{
- label: "可以考试",
- value: 1,
- },
- {
- label: "已结束",
- value: 4,
- }
- ]
- </script>
- <style lang="scss">
- </style>
|