anln_0000001_superFanPrices #25

Merged
yezian merged 48 commits from anln_0000001_superFanPrices into main 2025-01-21 14:34:00 +08:00
1 changed files with 8 additions and 2 deletions
Showing only changes of commit 2ad898e37b - Show all commits

View File

@ -41,13 +41,19 @@ export default function Banner({
const linkAndParams = goToPage(banner?.link);
const link = banner?.link;
if (typeof linkAndParams === "string") {
if (link?.action === "webViewHeader") {
if (
link?.action === "webViewHeaderInward" ||
link?.action === "webViewHeaderOutward"
) {
navigation.navigate("WebWithHeader", {
title: "",
uri: linkAndParams,
});
return;
} else if (link?.action === "webViewWithOutHeader") {
} else if (
link?.action === "webViewWithOutHeaderInward" ||
link?.action === "webViewWithOutHeaderOutward"
) {
navigation.navigate("WebWithoutHeader", {
title: "",
uri: linkAndParams,