anln_0000001_superFanPrices #25
|
@ -164,7 +164,10 @@ export default function Post({ data, isOwn = false, tagElement = null }) {
|
|||
)}
|
||||
</View>
|
||||
<View
|
||||
style={tailwind("flex flex-row items-center justify-between h-8")}
|
||||
style={{
|
||||
...tailwind("flex flex-row items-center justify-between h-8"),
|
||||
display: !isOwn ? "flex" : "none",
|
||||
}}
|
||||
>
|
||||
{data?.streamer_ext?.is_active_within_a_week === 1 ? (
|
||||
<TouchableOpacity
|
||||
|
@ -189,8 +192,7 @@ export default function Post({ data, isOwn = false, tagElement = null }) {
|
|||
/>
|
||||
</TouchableOpacity>
|
||||
) : (
|
||||
data?.streamer_ext?.zones?.length !== 0 &&
|
||||
!isOwn && (
|
||||
data?.streamer_ext?.zones?.length !== 0 && (
|
||||
<TouchableOpacity
|
||||
onPress={() =>
|
||||
navigation.navigate("SpaceIntroduce", { mid: data?.mid })
|
||||
|
|
|
@ -206,7 +206,7 @@ export default function EditStreamerPost({ navigation, route }) {
|
|||
</View>
|
||||
)}
|
||||
<Text style={tailwind("text-base font-medium text-white")}>
|
||||
动态内容-{initalData?.status}
|
||||
动态内容
|
||||
</Text>
|
||||
<TextInput
|
||||
placeholder="请遵守平台准则,严禁发布违规内容"
|
||||
|
|
|
@ -34,33 +34,33 @@ export default function Reviewed({ navigation, zid }) {
|
|||
limit: 20,
|
||||
...base,
|
||||
};
|
||||
// const signature = await generateSignature(body);
|
||||
// const _response = await fetch(
|
||||
// `${apiUrl}/api/zone/refund_list?signature=${signature}`,
|
||||
// {
|
||||
// method: "POST",
|
||||
// headers: {
|
||||
// "Content-Type": "application/json",
|
||||
// },
|
||||
// body: JSON.stringify(body),
|
||||
// }
|
||||
// );
|
||||
// const _data = await _response.json();
|
||||
// if (_data.ret === -1) {
|
||||
// Toast.show({
|
||||
// type: "error",
|
||||
// text1: _data.msg,
|
||||
// topOffset: 60,
|
||||
// });
|
||||
// return;
|
||||
// }
|
||||
// setData((old) => ({
|
||||
// ...old,
|
||||
// list: [...old.list, ..._data.data.list],
|
||||
// total: _data.data.total,
|
||||
// }));
|
||||
// setOffset(_data.data.offset);
|
||||
// setMore(_data.data.more);
|
||||
const signature = await generateSignature(body);
|
||||
const _response = await fetch(
|
||||
`${apiUrl}/api/zone/refund_list?signature=${signature}`,
|
||||
{
|
||||
method: "POST",
|
||||
headers: {
|
||||
"Content-Type": "application/json",
|
||||
},
|
||||
body: JSON.stringify(body),
|
||||
}
|
||||
);
|
||||
const _data = await _response.json();
|
||||
if (_data.ret === -1) {
|
||||
Toast.show({
|
||||
type: "error",
|
||||
text1: _data.msg,
|
||||
topOffset: 60,
|
||||
});
|
||||
return;
|
||||
}
|
||||
setData((old) => ({
|
||||
...old,
|
||||
list: [...old.list, ..._data.data.list],
|
||||
total: _data.data.total,
|
||||
}));
|
||||
setOffset(_data.data.offset);
|
||||
setMore(_data.data.more);
|
||||
} catch (error) {
|
||||
console.error(error);
|
||||
}
|
||||
|
|
|
@ -92,7 +92,7 @@ export default function StreamerPosts({ navigation, route }) {
|
|||
isOwn={true}
|
||||
tagElement={
|
||||
<View>
|
||||
{item?.status === 4 && (
|
||||
{(item?.status === 3 || item?.status === 4) && (
|
||||
<View style={tailwind("flex flex-col items-start mt-2")}>
|
||||
<View
|
||||
style={{
|
||||
|
|
Loading…
Reference in New Issue