From 7cfb8b226f3c52e3e8522206424a325f7515156c Mon Sep 17 00:00:00 2001 From: yezian Date: Mon, 25 Mar 2024 14:41:16 +0800 Subject: [PATCH] =?UTF-8?q?=E9=92=88=E5=AF=B9user=5Fid:314826=E8=BF=9B?= =?UTF-8?q?=E8=A1=8C=E4=BB=98=E8=B4=B9=E5=8A=9F=E8=83=BD=E9=99=90=E5=88=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- screeens/My/index.jsx | 174 ++++++++++++++++++++------------------ screeens/Posts/index.jsx | 3 +- screeens/Wallet/index.jsx | 18 ++-- 3 files changed, 107 insertions(+), 88 deletions(-) diff --git a/screeens/My/index.jsx b/screeens/My/index.jsx index ca34a4c..7d807c3 100644 --- a/screeens/My/index.jsx +++ b/screeens/My/index.jsx @@ -271,22 +271,24 @@ export default function My({ navigation }) { 粉丝 - navigation.navigate("Wallet")} - style={tailwind("flex flex-col items-center w-1/4")} - > - - {data?.gold_num} - - navigation.navigate("Wallet")} + style={tailwind("flex flex-col items-center w-1/4")} > - 金币 - - + + {data?.gold_num} + + + 金币 + + + )} {data?.role === 3 && ( navigation.navigate("Wallet")} @@ -307,52 +309,56 @@ export default function My({ navigation }) { )} {/* 会员 */} - - navigation.navigate("WebWithoutHeader", { - uri: process.env.EXPO_PUBLIC_WEB_URL + "/vip", - }) - } - style={tailwind( - "flex flex-col p-2.5 rounded-2xl mt-3.5 bg-[#301024]" - )} - > - + navigation.navigate("WebWithoutHeader", { + uri: process.env.EXPO_PUBLIC_WEB_URL + "/vip", + }) + } + style={tailwind( + "flex flex-col p-2.5 rounded-2xl mt-3.5 bg-[#301024]" + )} > - - - + + + + + + {data?.is_a_member !== 1 + ? "开通会员订阅动态" + : "尊贵的永久会员"} + + {data?.is_a_member !== 1 - ? "开通会员订阅动态" - : "尊贵的永久会员"} + ? "限时优惠活动" + : "已解锁全部会员权益"} - - {data?.is_a_member !== 1 - ? "限时优惠活动" - : "已解锁全部会员权益"} - + {data?.is_a_member !== 1 && ( + + + ¥{vipPrice}/永久 + + + )} - {data?.is_a_member !== 1 && ( - - - ¥{vipPrice}/永久 - - - )} - - + + )} {/* 纵向列表设置区 */} {data?.role === 3 && ( - navigation.navigate("Wallet")} - style={tailwind("flex flex-row h-12 items-center pr-2 pl-4")} - > - - - 我的钱包 - - - - navigation.navigate("UnlockedWechat")} - style={tailwind("flex flex-row h-12 items-center pr-2 pl-4")} - > - - - 已解锁微信 - - - + {data?.user_id !== 314826 && ( + navigation.navigate("Wallet")} + style={tailwind("flex flex-row h-12 items-center pr-2 pl-4")} + > + + + 我的钱包 + + + + )} + {data?.user_id !== 314826 && ( + navigation.navigate("UnlockedWechat")} + style={tailwind("flex flex-row h-12 items-center pr-2 pl-4")} + > + + + 已解锁微信 + + + + )} navigation.navigate("StreamerVerification")} style={tailwind("flex flex-row h-12 items-center pr-2 pl-4")} diff --git a/screeens/Posts/index.jsx b/screeens/Posts/index.jsx index 21fab8c..27aa98a 100644 --- a/screeens/Posts/index.jsx +++ b/screeens/Posts/index.jsx @@ -78,7 +78,8 @@ export default function Posts({ navigation }) { } const role = accountData.data.account.role; const isVip = accountData.data.account.is_a_member; - if (role !== 0 || isVip === 1) { + const userId = accountData.data.account.user_id; + if (role !== 0 || isVip === 1 || userId === 314826) { setBlur(false); } else { setBlur(true); diff --git a/screeens/Wallet/index.jsx b/screeens/Wallet/index.jsx index 4338ee7..88a5f8d 100644 --- a/screeens/Wallet/index.jsx +++ b/screeens/Wallet/index.jsx @@ -120,11 +120,19 @@ export default function Wallet({ navigation, route }) { )} > - navigation.navigate("WebWithHeader", { - title: "充值中心", - uri: process.env.EXPO_PUBLIC_WEB_URL + "/pay", - }) + onPress={ + data?.user_id === 314826 + ? () => + Toast.show({ + type: "error", + text1: "ios暂无充值渠道,请耐心等候", + topOffset: 60, + }) + : () => + navigation.navigate("WebWithHeader", { + title: "充值中心", + uri: process.env.EXPO_PUBLIC_WEB_URL + "/pay", + }) } style={tailwind("flex-row justify-between items-center py-4")} >