anln_0000001_superFanPrices #25
|
@ -1,4 +1,4 @@
|
|||
import { Text, View, Dimensions, TouchableOpacity } from "react-native";
|
||||
import { Alert, Dimensions, TouchableOpacity } from "react-native";
|
||||
import React from "react";
|
||||
import Swiper from "react-native-swiper";
|
||||
import { Image } from "expo-image";
|
||||
|
|
|
@ -291,6 +291,7 @@ const MessageList = ({ navigation, noticeCount, refInstance }) => {
|
|||
});
|
||||
return linkAndParams;
|
||||
})()}
|
||||
action={scollNotice?.hyperlinks[0]?.action}
|
||||
/>
|
||||
)}
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import { View, TouchableOpacity, Text } from "react-native";
|
||||
import { View, TouchableOpacity, Text, Alert } from "react-native";
|
||||
import React from "react";
|
||||
import { Icon } from "@rneui/themed";
|
||||
import { useTailwind } from "tailwind-rn";
|
||||
|
|
|
@ -5,12 +5,19 @@ import {
|
|||
Animated,
|
||||
Easing,
|
||||
TouchableOpacity,
|
||||
Alert,
|
||||
} from "react-native";
|
||||
import React, { useState, useEffect } from "react";
|
||||
import { useTailwind } from "tailwind-rn";
|
||||
import * as Linking from "expo-linking";
|
||||
|
||||
export default function ScrollNotice({ navigation, length, content, url }) {
|
||||
export default function ScrollNotice({
|
||||
navigation,
|
||||
length,
|
||||
content,
|
||||
url,
|
||||
action,
|
||||
}) {
|
||||
const tailwind = useTailwind();
|
||||
const [fadeAnim] = useState(new Animated.Value(300)); // 透明度初始值为0
|
||||
let animation = Animated.timing(fadeAnim, {
|
||||
|
@ -79,6 +86,38 @@ export default function ScrollNotice({ navigation, length, content, url }) {
|
|||
} else {
|
||||
navigation.navigate(...url);
|
||||
}
|
||||
if (typeof url === "string") {
|
||||
if (action === "webViewHeader") {
|
||||
navigation.navigate("WebWithHeader", {
|
||||
title: "",
|
||||
uri: url,
|
||||
});
|
||||
return;
|
||||
} else if (action === "webViewWithOutHeader") {
|
||||
navigation.navigate("WebWithoutHeader", {
|
||||
title: "",
|
||||
uri: url,
|
||||
});
|
||||
return;
|
||||
}
|
||||
try {
|
||||
// 尝试启动微信客户端
|
||||
Linking.openURL(url).catch(() => {
|
||||
// 启动微信客户端失败,弹出提示安装对话框
|
||||
Alert.alert(
|
||||
"错误提醒",
|
||||
"打开链接失败,请返回重试或者联系在线客服",
|
||||
[{ text: "确认", style: "cancel" }],
|
||||
{ cancelable: false }
|
||||
);
|
||||
});
|
||||
} catch (error) {
|
||||
// 启动微信客户端失败,继续加载URL
|
||||
console.error(error);
|
||||
}
|
||||
} else {
|
||||
navigation.navigate(...url);
|
||||
}
|
||||
}}
|
||||
style={{
|
||||
...tailwind("flex-1"),
|
||||
|
|
|
@ -4,6 +4,7 @@ import {
|
|||
Dimensions,
|
||||
TouchableOpacity,
|
||||
Image as NativeImage,
|
||||
Alert,
|
||||
} from "react-native";
|
||||
import React, { useEffect, useState } from "react";
|
||||
import { Image } from "expo-image";
|
||||
|
|
Loading…
Reference in New Issue