This commit is contained in:
parent
ea4b4b40bc
commit
5537f28fd3
|
@ -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(() => {
|
||||
|
|
Loading…
Reference in New Issue