|
@@ -16,8 +16,6 @@ import AuthorImgAc from '@/assets/images/icon_home_author-min-ac.png'
|
|
|
|
|
|
import useSizeAdapt from "@/useFunctions/useSizeAdapt"
|
|
|
|
|
|
-
|
|
|
-
|
|
|
const store = useStore()
|
|
|
const router = useRouter()
|
|
|
const route = useRoute()
|
|
@@ -62,9 +60,11 @@ const longTitleText = computed(() => {
|
|
|
})
|
|
|
|
|
|
const isShowHotspot = ref(true)
|
|
|
+let timeoutIdHotspot = null
|
|
|
watch(curPageIndex, (val) => {
|
|
|
+ clearTimeout(timeoutIdHotspot)
|
|
|
if (val == 0 || val == 4) {
|
|
|
- setTimeout(() => {
|
|
|
+ timeoutIdHotspot = setTimeout(() => {
|
|
|
isShowHotspot.value = true
|
|
|
}, 1500)
|
|
|
}
|