Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Hooke
/
mlaj
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
hookehuyr
2025-06-12 17:00:01 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
89a3896b2a2633440189eee97454a10c27930682
89a3896b
1 parent
7812657d
fix: 移除列表加载完成的默认提示文本
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
src/views/courses/MyCoursesPage.vue
src/views/profile/LearningRecordsPage.vue
src/views/courses/MyCoursesPage.vue
View file @
89a3896
<!--
* @Date: 2025-03-21 12:17:03
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2025-06-1
0 09:56:32
* @LastEditTime: 2025-06-1
2 16:38:14
* @FilePath: /mlaj/src/views/courses/MyCoursesPage.vue
* @Description: 文件描述
-->
...
...
@@ -12,7 +12,7 @@
<van-list
v-model:loading="loading"
:finished="finished"
finished-text="
没有更多了
"
finished-text=""
@load="onLoad"
class="px-4 py-3 space-y-4"
>
...
...
src/views/profile/LearningRecordsPage.vue
View file @
89a3896
...
...
@@ -123,7 +123,7 @@ const loading = ref(false);
const finished = ref(false);
const page = ref(0);
const limit = ref(10);
const finishText = ref('
没有更多了
');
const finishText = ref('');
// 加载数据
const onLoad = async () => {
...
...
Please
register
or
login
to post a comment