diff --git a/components/MediaPickerModal/index.jsx b/components/MediaPickerModal/index.jsx index dd42630..5f7779a 100644 --- a/components/MediaPickerModal/index.jsx +++ b/components/MediaPickerModal/index.jsx @@ -306,25 +306,23 @@ export default function MediaPickerModal({ title="权限申请" content="该功能需要开启存储权限,用于选择上传媒体文件" confirmText="继续" - cancel={() => { - setRequestModalVisible(false); - }} - confirm={() => { + custom={() => { setRequestModalVisible(false); requestMediaLibraryPermissions(); }} + customText="继续" /> { setOverlayVisible(false); }} confirm={() => { - // Linking.openSettings(); + Linking.openSettings(); setOverlayVisible(false); }} /> diff --git a/components/MyModal/index.jsx b/components/MyModal/index.jsx index 1b99a1e..4dfd767 100644 --- a/components/MyModal/index.jsx +++ b/components/MyModal/index.jsx @@ -8,6 +8,8 @@ export default function MyModal({ title, content, confirm, + custom, + customText, confirmText, cancelText, }) { @@ -41,32 +43,53 @@ export default function MyModal({ {content} - setVisible(false)} - style={tailwind( - "border-r-2 border-t-2 border-[#2c2b2f] basis-1/2 pt-1 justify-center items-center" - )} - > - - {cancelText ? cancelText : "取消"} - - - - - {confirmText ? confirmText : "确认"} - - + + {customText ? customText : "确认"} + + + ) : ( + <> + setVisible(false)} + style={tailwind( + "border-r-2 border-t-2 border-[#2c2b2f] basis-1/2 pt-1 justify-center items-center" + )} + > + + {cancelText ? cancelText : "取消"} + + + + + {confirmText ? confirmText : "确认"} + + + + )} diff --git a/screeens/My/index.jsx b/screeens/My/index.jsx index ada0764..5c86b98 100644 --- a/screeens/My/index.jsx +++ b/screeens/My/index.jsx @@ -202,7 +202,9 @@ export default function My({ navigation }) { {data?.name} - {data?.is_a_member === 1 && data?.user_id !== 314826 && ( - - )} + {data?.is_a_member === 1 && + data?.user_id !== 314826 && + data?.user_id !== 989430 && ( + + )} - {data?.user_id !== 314826 && ( + {data?.user_id !== 314826 && data?.user_id !== 989430 && ( navigation.navigate("Wallet")} style={tailwind("flex flex-col items-center w-1/4")} @@ -312,7 +316,7 @@ export default function My({ navigation }) { )} {/* 会员 */} - {data?.user_id !== 314826 && ( + {data?.user_id !== 314826 && data?.user_id !== 989430 && ( @@ -475,7 +479,7 @@ export default function My({ navigation }) { borderColor: "#2c2b2f", }} > - {data?.user_id !== 314826 && ( + {data?.user_id !== 314826 && data?.user_id !== 989430 && ( navigation.navigate("Wallet")} style={tailwind("flex flex-row h-12 items-center pr-2 pl-4")} @@ -491,7 +495,7 @@ export default function My({ navigation }) { /> )} - {data?.user_id !== 314826 && ( + {data?.user_id !== 314826 && data?.user_id !== 989430 && ( navigation.navigate("UnlockedWechat")} style={tailwind("flex flex-row h-12 items-center pr-2 pl-4")} @@ -507,7 +511,7 @@ export default function My({ navigation }) { /> )} - {data?.user_id !== 314826 && ( + {data?.user_id !== 314826 && data?.user_id !== 989430 && ( navigation.navigate("StreamerVerification")} style={tailwind("flex flex-row h-12 items-center pr-2 pl-4")} diff --git a/screeens/Posts/FeedPosts/index.jsx b/screeens/Posts/FeedPosts/index.jsx index f391380..2c0f082 100644 --- a/screeens/Posts/FeedPosts/index.jsx +++ b/screeens/Posts/FeedPosts/index.jsx @@ -211,7 +211,7 @@ export default function FeedPosts({ blur }) { const checkUserId = async () => { const account = await get("account"); const userId = account.user_id; - if (userId === 314826) { + if (userId === 314826 || userId === 989430) { setIsVipBannerVisible(false); return; } diff --git a/screeens/Posts/FollowPosts/index.jsx b/screeens/Posts/FollowPosts/index.jsx index 3353f62..115630b 100644 --- a/screeens/Posts/FollowPosts/index.jsx +++ b/screeens/Posts/FollowPosts/index.jsx @@ -194,7 +194,7 @@ export default function FollowPosts({ blur }) { const checkUserId = async () => { const account = await get("account"); const userId = account.user_id; - if (userId === 314826) { + if (userId === 314826 || userId === 989430) { setIsVipBannerVisible(false); return; } diff --git a/screeens/Posts/index.jsx b/screeens/Posts/index.jsx index 27aa98a..1e20752 100644 --- a/screeens/Posts/index.jsx +++ b/screeens/Posts/index.jsx @@ -79,7 +79,12 @@ export default function Posts({ navigation }) { const role = accountData.data.account.role; const isVip = accountData.data.account.is_a_member; const userId = accountData.data.account.user_id; - if (role !== 0 || isVip === 1 || userId === 314826) { + if ( + role !== 0 || + isVip === 1 || + userId === 314826 || + userId === 989430 + ) { setBlur(false); } else { setBlur(true); diff --git a/screeens/StreamerProfile/index.jsx b/screeens/StreamerProfile/index.jsx index 65954f0..76e5948 100644 --- a/screeens/StreamerProfile/index.jsx +++ b/screeens/StreamerProfile/index.jsx @@ -72,7 +72,7 @@ export default function StreamerProfile({ navigation, route }) { const checkUserId = async () => { const account = await get("account"); const userId = account.user_id; - if (userId === 314826) { + if (userId === 314826 || userId === 989430) { setIsWechatButtonVisible(false); return; } diff --git a/screeens/StreamerProfile/skeleton.jsx b/screeens/StreamerProfile/skeleton.jsx index e2a7305..cc1ffd1 100644 --- a/screeens/StreamerProfile/skeleton.jsx +++ b/screeens/StreamerProfile/skeleton.jsx @@ -15,7 +15,7 @@ export default function StreamerProfileSkeleton() { const checkUserId = async () => { const account = await get("account"); const userId = account.user_id; - if (userId === 314826) { + if (userId === 314826 || userId === 989430) { setIsWechatButtonVisible(false); return; } diff --git a/screeens/Wallet/index.jsx b/screeens/Wallet/index.jsx index 88a5f8d..2e98694 100644 --- a/screeens/Wallet/index.jsx +++ b/screeens/Wallet/index.jsx @@ -121,7 +121,7 @@ export default function Wallet({ navigation, route }) { > Toast.show({ type: "error",