提交 1e4ffbda authored 作者: 王鹏飞's avatar 王鹏飞

updates

上级 8d752ca6
...@@ -21,7 +21,7 @@ const show = ref<boolean>(false) ...@@ -21,7 +21,7 @@ const show = ref<boolean>(false)
// 当前选中的章节 // 当前选中的章节
const activeChapter = ref() const activeChapter = ref()
// 打卡记录 // 打卡记录
const chapterRecord = ref({ total: 0, list: [] }) const chapterRecord = ref<{ total: number; list: any[] }>({ total: 0, list: [] })
// 获取章节打卡记录 // 获取章节打卡记录
const getChapterRecord = function () { const getChapterRecord = function () {
const toast = Toast.loading({ message: '加载中...', forbidClick: true }) const toast = Toast.loading({ message: '加载中...', forbidClick: true })
......
<script setup lang="ts"></script> <script setup lang="ts"></script>
<template> <template>
<div class="home"></div> <AppContainer title="团队总榜"></AppContainer>
</template> </template>
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论