123456789101112131415161718192021222324252627282930313233343536 |
- <template>
- <view>
- 练习
- </view>
- </template>
- <script setup>
- import scrollListCardLianxi from "@/components/score-lianxi-card-lianxi/score-lianxi-card-lianxi.vue"
- import {
- getLianxiList,
- } from "@/api/lianxi.js";
- import {
- ref
- } from "vue";
- const tabData = [{
- label: "开始练习",
- value: 1,
- },
- {
- label: "已结束",
- value: 2,
- }
- ]
- function handleClick(data) {
- uni.redirectTo({
- url: `/pages/lianxi/lianxi?lxId=${data.lxId}`
- })
- }
- </script>
- <style lang="scss">
- </style>
|