This commit is contained in:
lf 2024-06-24 09:33:44 +08:00
parent ea4b4b40bc
commit 5537f28fd3
1 changed files with 7 additions and 2 deletions

View File

@ -128,6 +128,7 @@ window.parent.addEventListener('message', function (event) {
async function initContent() {
const params = {}
params[codeType[code]] = activityCode.value || ''
useStore.reset()
const res: any = await getContent(params)
initData(res)
}
@ -195,8 +196,11 @@ const intervalData = () => {
onLoad(() => {
activityCode.value = getUrlPathName()
intervalData()
if (!useStore.userInfo.srcList.url || useStore.userInfo.query !== query.value) {
if (
!useStore.userInfo.srcList.url ||
useStore.userInfo.query !== query.value ||
useStore.userInfo.href === window.location.href
) {
initContent()
} else {
Object.assign(srcList, useStore.userInfo.srcList, {
@ -207,6 +211,7 @@ onLoad(() => {
title: srcList.title,
})
}
intervalData()
})
onUnload(() => {