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