anln_refund_1.4 #30
|
@ -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)
|
||||
)}`
|
||||
: "")
|
||||
)}`
|
||||
);
|
||||
}
|
||||
|
|
|
@ -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))}`
|
||||
: "")
|
||||
)}`
|
||||
);
|
||||
}
|
||||
|
|
|
@ -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))}`
|
||||
: "")
|
||||
)}`
|
||||
);
|
||||
}
|
||||
|
|
|
@ -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)
|
||||
)}`
|
||||
: "")
|
||||
)}`
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue