hookehuyr

fix: 移除列表加载完成的默认提示文本

1 <!-- 1 <!--
2 * @Date: 2025-03-21 12:17:03 2 * @Date: 2025-03-21 12:17:03
3 * @LastEditors: hookehuyr hookehuyr@gmail.com 3 * @LastEditors: hookehuyr hookehuyr@gmail.com
4 - * @LastEditTime: 2025-06-10 09:56:32 4 + * @LastEditTime: 2025-06-12 16:38:14
5 * @FilePath: /mlaj/src/views/courses/MyCoursesPage.vue 5 * @FilePath: /mlaj/src/views/courses/MyCoursesPage.vue
6 * @Description: 文件描述 6 * @Description: 文件描述
7 --> 7 -->
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
12 <van-list 12 <van-list
13 v-model:loading="loading" 13 v-model:loading="loading"
14 :finished="finished" 14 :finished="finished"
15 - finished-text="没有更多了" 15 + finished-text=""
16 @load="onLoad" 16 @load="onLoad"
17 class="px-4 py-3 space-y-4" 17 class="px-4 py-3 space-y-4"
18 > 18 >
......
...@@ -123,7 +123,7 @@ const loading = ref(false); ...@@ -123,7 +123,7 @@ const loading = ref(false);
123 const finished = ref(false); 123 const finished = ref(false);
124 const page = ref(0); 124 const page = ref(0);
125 const limit = ref(10); 125 const limit = ref(10);
126 -const finishText = ref('没有更多了'); 126 +const finishText = ref('');
127 127
128 // 加载数据 128 // 加载数据
129 const onLoad = async () => { 129 const onLoad = async () => {
......