From 78816caa2e9d035f41c6848fe684c47c0b224035 Mon Sep 17 00:00:00 2001 From: jiannibang <271381693@qq.com> Date: Tue, 17 Jan 2023 13:32:33 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20617=20=E8=BF=9B=E5=85=A5=E5=B1=8F?= =?UTF-8?q?=E4=BF=9D=E7=9A=84=E6=95=B0=E5=80=BC=E4=B8=8D=E5=AF=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/PublicComponent/PublicComponent.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/PublicComponent/PublicComponent.vue b/src/components/PublicComponent/PublicComponent.vue index 420687c..95ee13b 100644 --- a/src/components/PublicComponent/PublicComponent.vue +++ b/src/components/PublicComponent/PublicComponent.vue @@ -48,10 +48,10 @@ const Time = defineAsyncComponent(() => import('@/base/Time/Time.vue')) const router = useRouter() const route = useRoute() const store = useStore() -const { shop, sidebarList, language, enhanced, indexList, shopList } = storeToRefs(store) +const { shop, language, enhanced, indexList, shopList } = storeToRefs(store) const { logoutRef, resetClickNumber, setLogoutRef, addTotalClick } = useLogout() -const { title, countDownGif, countDownNum, send, checkHandleScreen } = useHandleScreen(handleScreen) +const { isWall, title, countDownGif, countDownNum, countDownToWall, send, checkHandleScreen } = useHandleScreen(handleScreen) const hotRecommend = computed(() => indexList.value?.hotSearch?.slice(0, 5) ?? []) const handleHot = item => { @@ -76,8 +76,8 @@ async function handleScreen() { setLogoutRef(false) resetClickNumber() language.value !== 'zh' && store.SET_LANGUAGE('zh') - store.SET_SHOP(null) await router.push('/guide') + store.SET_SHOP(null) } const timer = ref(null)