anln_refund_1.4 #30

Merged
yezian merged 18 commits from anln_refund_1.4 into main 2025-01-21 18:22:52 +08:00
4 changed files with 21 additions and 6 deletions
Showing only changes of commit 7f5f3fd96f - Show all commits

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)
)}`
: "")
)}`
);
}