hookehuyr

fix: 调整数字滚动动画延迟时间从300ms到500ms

增加延迟时间让用户更清楚地看到滚动效果
1 <!-- 1 <!--
2 * @Date: 2025-08-27 17:43:45 2 * @Date: 2025-08-27 17:43:45
3 * @LastEditors: hookehuyr hookehuyr@gmail.com 3 * @LastEditors: hookehuyr hookehuyr@gmail.com
4 - * @LastEditTime: 2025-10-25 18:22:46 4 + * @LastEditTime: 2025-10-25 20:05:09
5 * @FilePath: /lls_program/src/pages/Dashboard/index.vue 5 * @FilePath: /lls_program/src/pages/Dashboard/index.vue
6 * @Description: 首页 6 * @Description: 首页
7 --> 7 -->
...@@ -730,6 +730,6 @@ const triggerNumberRollForDataReload = () => { ...@@ -730,6 +730,6 @@ const triggerNumberRollForDataReload = () => {
730 setTimeout(() => { 730 setTimeout(() => {
731 isNumberRollInProgress.value = false 731 isNumberRollInProgress.value = false
732 }, 1000) // 假设滚动动画需要1秒 732 }, 1000) // 假设滚动动画需要1秒
733 - }, 300) 733 + }, 500)
734 } 734 }
735 </script> 735 </script>
......