修改webView跳转

This commit is contained in:
al 2025-01-17 18:25:48 +08:00
parent 3717ee758c
commit 7f5f3fd96f
4 changed files with 21 additions and 6 deletions

View File

@ -70,9 +70,13 @@ export default function NoticeItem({ leftIcon, hasLink, data }) {
router.push(
`/webView/${encodeURIComponent(
links[0]?.params +
`?base=${encodeURIComponent(
JSON.stringify(base)
)}`
(links[0]?.action ===
"webViewWithOutHeaderInward" ||
links[0]?.action === "webViewHeaderInward"
? `?base=${encodeURIComponent(
JSON.stringify(base)
)}`
: "")
)}`
);
}

View File

@ -54,7 +54,10 @@ export default function ScrollNotice({ data }) {
router.push(
`/webView/${encodeURIComponent(
links[0]?.params +
`?base=${encodeURIComponent(JSON.stringify(base))}`
(links[0]?.action === "webViewWithOutHeaderInward" ||
links[0]?.action === "webViewHeaderInward"
? `?base=${encodeURIComponent(JSON.stringify(base))}`
: "")
)}`
);
}

View File

@ -59,7 +59,10 @@ export default function Banner() {
router.push(
`/webView/${encodeURIComponent(
links[0]?.params +
`?base=${encodeURIComponent(JSON.stringify(base))}`
(links[0]?.action === "webViewWithOutHeaderInward" ||
links[0]?.action === "webViewHeaderInward"
? `?base=${encodeURIComponent(JSON.stringify(base))}`
: "")
)}`
);
}

View File

@ -83,7 +83,12 @@ export default function HostList() {
router.push(
`/webView/${encodeURIComponent(
links[0]?.params +
`?base=${encodeURIComponent(JSON.stringify(base))}`
(links[0]?.action === "webViewWithOutHeaderInward" ||
links[0]?.action === "webViewHeaderInward"
? `?base=${encodeURIComponent(
JSON.stringify(base)
)}`
: "")
)}`
);
}