anln_0000001_superFanPrices #25
|
@ -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 })
|
||||
|
|
|
@ -87,7 +87,7 @@ export default function SpaceRefund({ navigation, route }) {
|
|||
}
|
||||
Toast.show({
|
||||
type: "success",
|
||||
text1: "提交成功,请关注原支付渠道通知",
|
||||
text1: "已提交,将在一个工作日内审核完毕",
|
||||
topOffset: 60,
|
||||
});
|
||||
navigation.replace("HomeTab");
|
||||
|
|
|
@ -89,6 +89,7 @@ export default function StreamerPosts({ navigation, route }) {
|
|||
<View>
|
||||
<Post
|
||||
data={item}
|
||||
isOwn={true}
|
||||
tagElement={
|
||||
<View>
|
||||
{item?.status === 4 && (
|
||||
|
|
Loading…
Reference in New Issue