hookehuyr

fix(ui): 调整返回顶部按钮的位置和偏移量

统一多个页面的返回顶部按钮样式,将底部位置调整为25vh,偏移量改为600,提升用户体验
...@@ -154,7 +154,7 @@ ...@@ -154,7 +154,7 @@
154 154
155 <van-dialog v-model:show="dialog_show" title="标题" show-cancel-button></van-dialog> 155 <van-dialog v-model:show="dialog_show" title="标题" show-cancel-button></van-dialog>
156 156
157 - <van-back-top right="5vw" bottom="25vh" offset="400" /> 157 + <van-back-top right="5vw" bottom="25vh" offset="600" />
158 158
159 <!-- 底部悬浮打卡按钮 --> 159 <!-- 底部悬浮打卡按钮 -->
160 <div v-if="!taskDetail.is_finish" class="floating-checkin-button"> 160 <div v-if="!taskDetail.is_finish" class="floating-checkin-button">
......
...@@ -325,7 +325,7 @@ ...@@ -325,7 +325,7 @@
325 </template> 325 </template>
326 </div> 326 </div>
327 </van-popup> 327 </van-popup>
328 - <van-back-top right="5vw" bottom="15vh" offset="400" /> 328 + <van-back-top right="5vw" bottom="25vh" offset="600" />
329 </AppLayout> 329 </AppLayout>
330 </template> 330 </template>
331 331
......
...@@ -173,7 +173,7 @@ ...@@ -173,7 +173,7 @@
173 <van-empty v-else description="暂无数据" /> 173 <van-empty v-else description="暂无数据" />
174 </div> 174 </div>
175 175
176 - <van-back-top right="5vw" bottom="10vh" offset="400" /> 176 + <van-back-top right="5vw" bottom="25vh" offset="600" />
177 <div style="height: 5rem;"></div> 177 <div style="height: 5rem;"></div>
178 </van-config-provider> 178 </van-config-provider>
179 179
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
2 * @Author: hookehuyr hookehuyr@gmail.com 2 * @Author: hookehuyr hookehuyr@gmail.com
3 * @Date: 2025-06-19 17:12:19 3 * @Date: 2025-06-19 17:12:19
4 * @LastEditors: hookehuyr hookehuyr@gmail.com 4 * @LastEditors: hookehuyr hookehuyr@gmail.com
5 - * @LastEditTime: 2025-10-13 10:20:21 5 + * @LastEditTime: 2025-10-13 10:28:29
6 * @FilePath: /mlaj/src/views/teacher/studentPage.vue 6 * @FilePath: /mlaj/src/views/teacher/studentPage.vue
7 * @Description: 学生详情页面 7 * @Description: 学生详情页面
8 --> 8 -->
...@@ -272,7 +272,6 @@ ...@@ -272,7 +272,6 @@
272 </div> 272 </div>
273 </van-list> 273 </van-list>
274 <van-empty v-show="activeTab === 'homework' && !checkinDataList.length" description="暂无数据" /> 274 <van-empty v-show="activeTab === 'homework' && !checkinDataList.length" description="暂无数据" />
275 - <van-back-top right="5vw" bottom="10vh" offset="400" />
276 <div style="height: 5rem;"></div> 275 <div style="height: 5rem;"></div>
277 276
278 <!-- 状态筛选弹窗 --> 277 <!-- 状态筛选弹窗 -->
...@@ -369,6 +368,8 @@ ...@@ -369,6 +368,8 @@
369 <p class="text-gray-700 text-center">确定要删除这条点评吗?</p> 368 <p class="text-gray-700 text-center">确定要删除这条点评吗?</p>
370 </div> 369 </div>
371 </van-dialog> 370 </van-dialog>
371 +
372 + <van-back-top right="5vw" bottom="25vh" offset="600" />
372 </div> 373 </div>
373 </van-config-provider> 374 </van-config-provider>
374 </template> 375 </template>
......