This commit is contained in:
parent
9a0ca931f4
commit
466a2338ef
|
@ -271,7 +271,10 @@ onBeforeMount(async () => {
|
|||
getData();
|
||||
});
|
||||
onMounted(() => {
|
||||
startAutoScroll();
|
||||
setTimeout(()=>{
|
||||
startAutoScroll();
|
||||
},600)
|
||||
|
||||
// console.log(
|
||||
// mainRef.value.scrollTop,
|
||||
// mainRef.value.scrollHeight,
|
||||
|
|
|
@ -454,7 +454,9 @@ const startAutoSwitching = () => {
|
|||
interval = setInterval(toggleShow, 6000); // 每6秒切换一次
|
||||
};
|
||||
onMounted(() => {
|
||||
startAutoScroll();
|
||||
setTimeout(()=>{
|
||||
startAutoScroll();
|
||||
},600)
|
||||
startAutoSwitching();
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in New Issue