anln_0000001_superFanPrices #25

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

View File

@ -266,9 +266,9 @@ const MessageList = forwardRef(({ navigation }, ref) => {
}}
>
{/* 广告轮播 */}
{!!scollNotice.length && (
{/* {!!scollNotice.length && (
<ScrollNotice content={scollNotice} length={scollNotice.length} />
)}
)} */}
{/* 官方消息 */}
<View

View File

@ -218,7 +218,7 @@ export default function RefundDetail({ navigation, route }) {
<View style={tailwind("flex-row items-start mt-4 pr-6")}>
<CheckBox
disabled={!checkAble}
checked={selectedIndex === 2}
checked={selectedIndex == 4 || selectedIndex == 2}
onPress={() => setIndex(2)}
checkedIcon="dot-circle-o"
uncheckedIcon="circle-o"
@ -313,7 +313,13 @@ export default function RefundDetail({ navigation, route }) {
}}
>
{isSubmitting && <ActivityIndicator size="small" color="white" />}
{!checkAble ? "您已提交" : isSubmitting ? "正在提交..." : "提交"}
{data && data?.refunds_status === 4
? "系统已自动提交"
: !checkAble
? "您已提交"
: isSubmitting
? "正在提交..."
: "提交"}
</Button>
</View>
</ScrollView>

View File

@ -140,7 +140,11 @@ export default function Reviewed({ navigation, zid }) {
)}
>
<Text style={tailwind("text-white text-sm")}>
{item?.refunds_status === -1 ? "已拒绝" : "已退款"}
{item?.refunds_status === 4
? "已自动退款"
: item?.refunds_status === -1
? "已拒绝"
: "已退款"}
</Text>
</View>
{item?.refunds_status === 3 && (

View File

@ -16,10 +16,8 @@ import MediaPicker from "../../../components/MediaPicker";
import Toast from "react-native-toast-message";
import { get } from "../../../utils/storeInfo";
import { multiUpload } from "../../../utils/upload";
import baseRequest from "../../../utils/baseRequest";
import { generateSignature } from "../../../utils/crypto";
import requireAPI from "../../../utils/requireAPI";
export default function JoinGuild({ navigation, route }) {
export default function JoinGuild({ navigation }) {
const tailwind = useTailwind();
const insets = useSafeAreaInsets();
@ -56,8 +54,7 @@ export default function JoinGuild({ navigation, route }) {
!values.guild_name ||
!values.contact_name ||
!values.contact_way ||
!values.cooperated_platform ||
accountImages.length === 0
!values.cooperated_platform
) {
Toast.show({
type: "error",
@ -67,16 +64,18 @@ export default function JoinGuild({ navigation, route }) {
return;
}
setIsSubmitting(true);
const account = await get("account");
const account_shot = await multiUpload(accountImages);
if (!account_shot.image_ids.length) {
Toast.show({
type: "error",
text1: "上传失败,请联系客服进行上传",
topOffset: 60,
});
setIsSubmitting(false);
return;
let account_shot = null;
if (accountImages.length) {
account_shot = await multiUpload(accountImages);
if (!account_shot.image_ids.length) {
Toast.show({
type: "error",
text1: "上传失败,请联系客服进行上传",
topOffset: 60,
});
setIsSubmitting(false);
return;
}
}
//
@ -220,7 +219,6 @@ export default function JoinGuild({ navigation, route }) {
style={tailwind("flex-row justify-between items-center")}
>
<Text style={tailwind("text-base text-white font-medium")}>
<Text style={tailwind("text-[#F53030]")}>*</Text>
账号截图
</Text>
<Text