anln_0000001_superFanPrices #25

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

View File

@ -19,7 +19,7 @@ import Toast from "react-native-toast-message";
import { get } from "../../utils/storeInfo";
import { useImageViewer } from "../../context/ImageViewProvider";
export default function Post({ data, tagElement = null }) {
export default function Post({ data, isOwn = false, tagElement = null }) {
const tailwind = useTailwind();
const navigation = useNavigation();
const [like, setLike] = useState(data?.is_thumbed_up === 1 ? true : false);
@ -189,7 +189,8 @@ export default function Post({ data, tagElement = null }) {
/>
</TouchableOpacity>
) : (
data?.streamer_ext?.zones?.length !== 0 && (
data?.streamer_ext?.zones?.length !== 0 &&
!isOwn && (
<TouchableOpacity
onPress={() =>
navigation.navigate("SpaceIntroduce", { mid: data?.mid })

View File

@ -87,7 +87,7 @@ export default function SpaceRefund({ navigation, route }) {
}
Toast.show({
type: "success",
text1: "提交成功,请关注原支付渠道通知",
text1: "已提交,将在一个工作日内审核完毕",
topOffset: 60,
});
navigation.replace("HomeTab");

View File

@ -89,6 +89,7 @@ export default function StreamerPosts({ navigation, route }) {
<View>
<Post
data={item}
isOwn={true}
tagElement={
<View>
{item?.status === 4 && (