修复小问题

This commit is contained in:
al 2025-01-09 13:55:53 +08:00
parent 237c107d3b
commit 0ae76f1e23
4 changed files with 34 additions and 32 deletions
components/Post
screeens
EditStreamerPost
Refund/RefundList/Reviewed
StreamerPosts

View File

@ -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 })

View File

@ -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="请遵守平台准则,严禁发布违规内容"

View File

@ -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);
}

View File

@ -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={{