anln_0000001_superFanPrices #25
|
@ -0,0 +1,344 @@
|
|||
import { get, clear } from "../utils/storeInfo";
|
||||
import requireAPI from "../utils/requireAPI";
|
||||
import Toast from "react-native-toast-message";
|
||||
import { JSEncrypt } from "jsencrypt";
|
||||
import baseRequest from "../utils/baseRequest";
|
||||
//退出登录
|
||||
export const handleLogout = async () => {
|
||||
const account = get("account");
|
||||
try {
|
||||
const data = await requireAPI("POST", `/api/login/logout`, {
|
||||
body: {
|
||||
mid: account.mid,
|
||||
},
|
||||
});
|
||||
if (data.ret === -1) {
|
||||
Toast.show({
|
||||
type: "error",
|
||||
text1: data.msg,
|
||||
topOffset: 60,
|
||||
});
|
||||
return;
|
||||
}
|
||||
clear();
|
||||
} catch (error) {
|
||||
// console.error(error);
|
||||
}
|
||||
};
|
||||
//关注和取关功能
|
||||
export const handleFollow = async (isFollowed, followedID, callback) => {
|
||||
const account = get("account");
|
||||
let body = {
|
||||
[!isFollowed ? "account_relations" : "sentences"]: [
|
||||
{ sub_mid: account.mid, obj_mid: followedID, predicate: 0 },
|
||||
{ sub_mid: followedID, obj_mid: account.mid, predicate: 1 },
|
||||
],
|
||||
};
|
||||
try {
|
||||
const data = await requireAPI(
|
||||
"POST",
|
||||
`/api/account_relation/${!isFollowed ? "create" : "delete"}`,
|
||||
{
|
||||
body,
|
||||
}
|
||||
);
|
||||
if (data.ret === -1) {
|
||||
Toast.show({
|
||||
type: "error",
|
||||
text1: data.msg,
|
||||
topOffset: 60,
|
||||
});
|
||||
return;
|
||||
} else {
|
||||
callback && callback(!isFollowed);
|
||||
}
|
||||
} catch (error) {
|
||||
// console.error(error);
|
||||
}
|
||||
};
|
||||
//拉黑功能
|
||||
export async function handleBlock(blocker, blocked) {
|
||||
try {
|
||||
const data = await requireAPI("POST", `/api/account_relation/create`, {
|
||||
body: {
|
||||
account_relations: [
|
||||
{ sub_mid: blocker, obj_mid: blocked, predicate: 2 },
|
||||
{ sub_mid: blocked, obj_mid: blocker, predicate: 3 },
|
||||
],
|
||||
},
|
||||
});
|
||||
if (data.ret === -1) {
|
||||
Toast.show({
|
||||
type: "error",
|
||||
text1: data.msg,
|
||||
topOffset: 60,
|
||||
});
|
||||
return;
|
||||
}
|
||||
Toast.show({
|
||||
type: "success",
|
||||
text1: "拉黑成功,将不再向您推荐Ta",
|
||||
topOffset: 60,
|
||||
});
|
||||
} catch (error) {
|
||||
console.error(error);
|
||||
}
|
||||
}
|
||||
export async function handleUnBlock(unblocker, unblocked) {
|
||||
try {
|
||||
const data = await requireAPI("POST", `/api/account_relation/delete`, {
|
||||
body: {
|
||||
sentences: [
|
||||
{ sub_mid: unblocker, obj_mid: unblocked, predicate: 2 },
|
||||
{ sub_mid: unblocked, obj_mid: unblocker, predicate: 3 },
|
||||
],
|
||||
},
|
||||
});
|
||||
if (data.ret === -1) {
|
||||
Toast.show({
|
||||
type: "error",
|
||||
text1: data.msg,
|
||||
topOffset: 60,
|
||||
});
|
||||
return;
|
||||
}
|
||||
} catch (error) {
|
||||
console.error(error);
|
||||
}
|
||||
}
|
||||
//点赞和取消点赞功能
|
||||
export const thumbsUp = async (id, times, callback, isZone) => {
|
||||
try {
|
||||
const body = isZone
|
||||
? {
|
||||
zone_moment_id: id,
|
||||
times: times == 1 ? -1 : 1,
|
||||
}
|
||||
: {
|
||||
moment_id: id,
|
||||
times: times == 1 ? -1 : 1,
|
||||
};
|
||||
// console.log("body", body);
|
||||
|
||||
const data = await requireAPI(
|
||||
"POST",
|
||||
`/api/${isZone ? "zone_moment" : "moment"}/thumbs_up`,
|
||||
{
|
||||
body,
|
||||
}
|
||||
);
|
||||
if (data.ret === -1) {
|
||||
Toast.show({
|
||||
type: "error",
|
||||
text1: data.msg,
|
||||
topOffset: 60,
|
||||
});
|
||||
return;
|
||||
} else {
|
||||
callback(times == 1 ? -1 : 1);
|
||||
}
|
||||
} catch (error) {
|
||||
// console.error(error);
|
||||
}
|
||||
};
|
||||
//点赞和取消点赞功能
|
||||
export const zoneThumbsUp = async (id, times = 1, callback) => {
|
||||
// console.log("times", times);
|
||||
try {
|
||||
const body = {
|
||||
moment_id: id,
|
||||
times: times == 1 ? -1 : 1,
|
||||
};
|
||||
const data = await requireAPI("POST", `/api/zone/thumbs_up`, {
|
||||
body,
|
||||
});
|
||||
if (data.ret === -1) {
|
||||
Toast.show({
|
||||
type: "error",
|
||||
text1: data.msg,
|
||||
topOffset: 60,
|
||||
});
|
||||
return;
|
||||
} else {
|
||||
callback(times == 1 ? -1 : 1);
|
||||
}
|
||||
} catch (error) {
|
||||
// console.error(error);
|
||||
}
|
||||
};
|
||||
// 查看关系
|
||||
export async function checkRelation(subMid, objMid, predicate) {
|
||||
try {
|
||||
const data = await requireAPI(
|
||||
"POST",
|
||||
`/api/account_relation/list_by_sentence`,
|
||||
{
|
||||
body: {
|
||||
sub_mid: subMid,
|
||||
obj_mid: objMid,
|
||||
predicate: predicate,
|
||||
},
|
||||
}
|
||||
);
|
||||
if (data.ret === -1) {
|
||||
Toast.show({
|
||||
type: "error",
|
||||
text1: data.msg,
|
||||
topOffset: 60,
|
||||
});
|
||||
return;
|
||||
}
|
||||
return data.data.is_account_relation_existed;
|
||||
} catch (error) {
|
||||
// console.error(error);
|
||||
}
|
||||
}
|
||||
// 获取用户信息
|
||||
export async function getUserInfo() {
|
||||
try {
|
||||
const data = await requireAPI(
|
||||
"POST",
|
||||
`/api/account/list_by_mid`,
|
||||
null,
|
||||
true
|
||||
);
|
||||
if (data.ret === -1) {
|
||||
Toast.show({
|
||||
type: "error",
|
||||
text1: data.msg,
|
||||
topOffset: 60,
|
||||
});
|
||||
return;
|
||||
}
|
||||
return data.data.account;
|
||||
} catch (error) {
|
||||
// console.error(error);
|
||||
}
|
||||
}
|
||||
|
||||
// 创建订单
|
||||
export const createOrder = async (type = "alipay_h5") => {
|
||||
if (!selectedPrice.id && !customCoin.selected) {
|
||||
Toast.show({
|
||||
type: "info",
|
||||
text1: "请选择充值档位",
|
||||
topOffset: 60,
|
||||
});
|
||||
return;
|
||||
}
|
||||
if (customCoin.selected && customCoin.num < 10) {
|
||||
Toast.show({
|
||||
type: "info",
|
||||
text1: "最低充值1元哦~",
|
||||
topOffset: 60,
|
||||
});
|
||||
return;
|
||||
}
|
||||
|
||||
const base = baseRequest();
|
||||
const body = {
|
||||
...base,
|
||||
product_id: customCoin.selected ? "h5_custom_coin" : selectedPrice.id,
|
||||
custom_coins: customCoin.selected ? customCoin.num : 0,
|
||||
pay_type: type,
|
||||
redirect_url: type === "yeepay_wxpay_h5" ? window.location.href : "",
|
||||
from: "app",
|
||||
};
|
||||
|
||||
//如果是微信jsapi支付直接跳转到中间页
|
||||
if (type === "wxpay_jsapi") {
|
||||
router.push(`/pay/${encodeURIComponent(JSON.stringify(body))}`);
|
||||
return;
|
||||
}
|
||||
|
||||
setIsLoading(true);
|
||||
|
||||
const signature = generateSignature(body);
|
||||
try {
|
||||
const response = await fetch(
|
||||
`/api/vas/create_order?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: "info",
|
||||
text1: data.msg,
|
||||
topOffset: 60,
|
||||
});
|
||||
return;
|
||||
}
|
||||
switch (type) {
|
||||
case "yeepay_alipay_h5":
|
||||
router.push(`${data.data.yeepay_alipay_h5_param_str}`);
|
||||
break;
|
||||
case "yeepay_wxpay_h5":
|
||||
router.push(`${data.data.yeepay_wxpay_h5_param_str}`);
|
||||
break;
|
||||
case "alipay_h5":
|
||||
router.push(`${data.data.alipay_h5_param_str}`);
|
||||
break;
|
||||
case "wxpay_h5":
|
||||
router.push(
|
||||
`https://shop.tiefen.fun/pay/wxpay_h5/${encodeURIComponent(
|
||||
data.data.wxpay_h5_param_str
|
||||
)}`
|
||||
);
|
||||
break;
|
||||
default:
|
||||
router.push(`${data.data.alipay_h5_param_str}`);
|
||||
break;
|
||||
}
|
||||
} catch (error) {
|
||||
// console.error(error);
|
||||
} finally {
|
||||
setIsLoading(false);
|
||||
}
|
||||
};
|
||||
|
||||
//点击获取验证码
|
||||
export const handleVerification = async (
|
||||
mobilePhone = "",
|
||||
regionCode,
|
||||
callback
|
||||
) => {
|
||||
//手机号校验
|
||||
if (!mobilePhone.toString().match(/^1[3456789]\d{9}$/)) {
|
||||
Toast.show({
|
||||
type: "error",
|
||||
text1: "手机号码格式错误",
|
||||
topOffset: 60,
|
||||
});
|
||||
return;
|
||||
}
|
||||
//对手机号进行RSA加密
|
||||
const encrypt = new JSEncrypt();
|
||||
encrypt.setPublicKey(process.env.NEXT_PUBLIC_RSA_KEY);
|
||||
const mobile_phone = encrypt.encrypt(mobilePhone);
|
||||
//发送短信验证码
|
||||
try {
|
||||
const data = await requireAPI("POST", `/api/veri_code/send`, {
|
||||
body: {
|
||||
mobile_phone: mobile_phone,
|
||||
region_code: regionCode,
|
||||
},
|
||||
});
|
||||
if (data.ret === -1) {
|
||||
Toast.show({
|
||||
type: "error",
|
||||
text1: data.msg,
|
||||
topOffset: 60,
|
||||
});
|
||||
return;
|
||||
}
|
||||
callback && callback();
|
||||
} catch (error) {
|
||||
// console.error(error);
|
||||
}
|
||||
};
|
|
@ -0,0 +1,88 @@
|
|||
import requireAPI from "../utils/requireAPI";
|
||||
import Toast from "react-native-toast-message";
|
||||
export const getStreamerInfo = async (mid) => {
|
||||
try {
|
||||
const data = await requireAPI("POST", "/api/zone/list_by_mid", {
|
||||
body: {
|
||||
mid,
|
||||
},
|
||||
});
|
||||
if (data.ret === -1) {
|
||||
Toast.show({
|
||||
type: "error",
|
||||
text1: data.msg,
|
||||
topOffset: 60,
|
||||
});
|
||||
return;
|
||||
}
|
||||
return {
|
||||
...data.data.list[0],
|
||||
refund_enable: data.data.refund_enable,
|
||||
refund_status: data.data.refund_status,
|
||||
};
|
||||
} catch (error) {
|
||||
// console.error(error);
|
||||
}
|
||||
};
|
||||
export const getStreamerDetailInfo = async (mid) => {
|
||||
try {
|
||||
const data = await requireAPI("POST", "/api/streamer/list_ext_by_mid", {
|
||||
body: {
|
||||
mid,
|
||||
},
|
||||
});
|
||||
if (data.ret === -1) {
|
||||
Toast.show({
|
||||
type: "error",
|
||||
text1: data.msg,
|
||||
topOffset: 60,
|
||||
});
|
||||
return;
|
||||
}
|
||||
return {
|
||||
...data.data,
|
||||
};
|
||||
} catch (error) {
|
||||
// console.error(error);
|
||||
}
|
||||
};
|
||||
//获取空间数据并将该空间标为已读
|
||||
export const getSpaceData = async (mid) => {
|
||||
try {
|
||||
const data = await requireAPI("POST", `/api/zone/list_by_mid`, {
|
||||
body: {
|
||||
mid,
|
||||
},
|
||||
});
|
||||
if (data.ret === -1) {
|
||||
Toast.show({
|
||||
type: "error",
|
||||
text1: data.msg,
|
||||
topOffset: 60,
|
||||
});
|
||||
return;
|
||||
}
|
||||
|
||||
//将空间标为已读
|
||||
const data2 = await requireAPI("POST", `/api/zone_session/upsert`, {
|
||||
body: {
|
||||
zid: data.data.list[0]?.id,
|
||||
},
|
||||
});
|
||||
if (data2.ret === -1) {
|
||||
Toast.show({
|
||||
type: "error",
|
||||
text1: data.msg,
|
||||
topOffset: 60,
|
||||
});
|
||||
return;
|
||||
}
|
||||
return {
|
||||
isRefunding: data.data.refund_status === 1,
|
||||
refund_enable: data.data.refund_enable,
|
||||
noRole: data.data.list[0].visitor_role === 4,
|
||||
};
|
||||
} catch (error) {
|
||||
// console.error(error);
|
||||
}
|
||||
};
|
|
@ -0,0 +1,19 @@
|
|||
import requireAPI from "../utils/requireAPI";
|
||||
// import { Toast } from "antd-mobile";
|
||||
export const getStreamer = async (userId) => {
|
||||
try {
|
||||
const data = await requireAPI("POST", "/api/streamer/list_ext_by_user_id", {
|
||||
body: {
|
||||
user_id: userId,
|
||||
},
|
||||
});
|
||||
if (data.ret === -1) {
|
||||
return;
|
||||
}
|
||||
return {
|
||||
...data.data,
|
||||
};
|
||||
} catch (error) {
|
||||
// console.error(error);
|
||||
}
|
||||
};
|
|
@ -15,12 +15,6 @@ import { useSafeAreaInsets } from "react-native-safe-area-context";
|
|||
import MediaPicker from "../../components/MediaPicker";
|
||||
import Toast from "react-native-toast-message";
|
||||
import { multiUpload } from "../../utils/upload";
|
||||
import baseRequest from "../../utils/baseRequest";
|
||||
import { generateSignature } from "../../utils/crypto";
|
||||
import { Image } from "expo-image";
|
||||
import { Icon } from "@rneui/themed";
|
||||
import { Button, Switch } from "@rneui/themed";
|
||||
import { Formik, useFormik } from "formik";
|
||||
import MediaGrid from "../../components/MediaGrid";
|
||||
import requireAPI from "../../utils/requireAPI";
|
||||
export default function EditStreamerPost({ navigation, route }) {
|
||||
|
|
|
@ -1,75 +1,261 @@
|
|||
import {
|
||||
View,
|
||||
Text,
|
||||
TextInput,
|
||||
ScrollView,
|
||||
ActivityIndicator,
|
||||
TextInput,
|
||||
KeyboardAvoidingView,
|
||||
TouchableOpacity,
|
||||
Platform,
|
||||
} from "react-native";
|
||||
import React, { useState } from "react";
|
||||
import React, { useState, useEffect, useMemo, useRef } from "react";
|
||||
import { Button, CheckBox, Switch } from "@rneui/themed";
|
||||
import { useTailwind } from "tailwind-rn";
|
||||
import { useSafeAreaInsets } from "react-native-safe-area-context";
|
||||
import Toast from "react-native-toast-message";
|
||||
import baseRequest from "../../../utils/baseRequest";
|
||||
import { generateSignature } from "../../../utils/crypto";
|
||||
import { Button, Divider, CheckBox, Switch } from "@rneui/themed";
|
||||
import requireAPI from "../../../utils/requireAPI";
|
||||
import { get } from "../../../utils/storeInfo";
|
||||
import { getStreamerInfo } from "../../../api/space";
|
||||
const superSingles = [
|
||||
{ key: 0, index: 0, text: "永久" },
|
||||
{ key: 4, index: 1, text: "按年生效" },
|
||||
{ key: 3, index: 2, text: "按半年生效" },
|
||||
{ key: 2, index: 3, text: "按季度生效" },
|
||||
{ key: 1, index: 4, text: "按月生效" },
|
||||
];
|
||||
// const superSingles = [
|
||||
// { key: 0, text: "永久" },
|
||||
// { key: 1, text: "按年生效" },
|
||||
// { key: 2, text: "按半年生效" },
|
||||
// { key: 3, text: "按季度生效" },
|
||||
// { key: 4, text: "按月生效" },
|
||||
// ];
|
||||
const ListItemWithCheckbox = ({
|
||||
superSingle,
|
||||
superSinglesContr,
|
||||
setSuperSinglesContr,
|
||||
superSingleCheckeds,
|
||||
setSuperSingleCheckeds,
|
||||
index,
|
||||
}) => {
|
||||
const tailwind = useTailwind();
|
||||
return (
|
||||
<View style={tailwind("mt-4")}>
|
||||
<View>
|
||||
<View style={tailwind("flex-row items-center")}>
|
||||
<CheckBox
|
||||
checked={superSingleCheckeds.includes(index)}
|
||||
onPress={(e) => {
|
||||
e.stopPropagation();
|
||||
const newSuperSinglesContr = [...superSinglesContr];
|
||||
newSuperSinglesContr[index].enable = false;
|
||||
// newSuperSinglesContr[index].price = "0";
|
||||
newSuperSinglesContr[index].wechatFree = false;
|
||||
|
||||
setSuperSinglesContr(newSuperSinglesContr);
|
||||
if (superSingleCheckeds.includes(index)) {
|
||||
setSuperSingleCheckeds(() => {
|
||||
const newSuperSingleCheckeds = [...superSingleCheckeds];
|
||||
newSuperSingleCheckeds.splice(
|
||||
newSuperSingleCheckeds.indexOf(index),
|
||||
1
|
||||
);
|
||||
return newSuperSingleCheckeds;
|
||||
});
|
||||
} else {
|
||||
setSuperSingleCheckeds(superSingleCheckeds.concat(index));
|
||||
}
|
||||
}}
|
||||
// checkedIcon="dot-circle-o"
|
||||
// uncheckedIcon="circle-o"
|
||||
iconType="ionicon"
|
||||
checkedIcon="checkmark-circle"
|
||||
uncheckedIcon="ellipse-outline"
|
||||
checkedColor="#FF669E"
|
||||
containerStyle={tailwind("p-0 m-0 bg-transparent")}
|
||||
size={24}
|
||||
></CheckBox>
|
||||
<Text style={tailwind("ml-1 text-white")}>{superSingle.text}</Text>
|
||||
</View>
|
||||
<View
|
||||
// className={`mt-2 px-4 h-12 py-3 rounded-[0.8rem] bg-[#FFFFFF1a] flex justify-between items-center ${
|
||||
// superSingleCheckeds != index
|
||||
// ? "mt-0 px-0 py-0 hidden"
|
||||
// : ""
|
||||
// }`}
|
||||
style={tailwind(
|
||||
`mt-2 px-4 h-12 py-3 rounded-lg bg-[#FFFFFF1A] flex-row justify-between items-center ${
|
||||
!superSingleCheckeds.includes(index) ? "mt-0 p-0 hidden" : ""
|
||||
}`
|
||||
)}
|
||||
>
|
||||
<View style={tailwind("flex-row items-center")}>
|
||||
<Text style={tailwind("mr-2 text-[#FFFFFF80] text-sm")}>¥</Text>
|
||||
<TextInput
|
||||
placeholderTextColor="#FFFFFF80"
|
||||
underlineColorAndroid="transparent"
|
||||
keyboardType="numeric"
|
||||
value={superSinglesContr[index].price}
|
||||
onChangeText={(value) => {
|
||||
const newSuperSinglesContr = [...superSinglesContr];
|
||||
newSuperSinglesContr[index].price = value;
|
||||
setSuperSinglesContr(newSuperSinglesContr);
|
||||
}}
|
||||
style={{
|
||||
...tailwind("text-2xl text-white"),
|
||||
maxWidth: 200,
|
||||
minWidth: 150,
|
||||
}}
|
||||
/>
|
||||
</View>
|
||||
<View style={tailwind("flex-row items-center")}>
|
||||
<Text style={tailwind("text-[#FFFFFF80] mr-2")}>|</Text>
|
||||
<CheckBox
|
||||
block
|
||||
checked={superSinglesContr[index].wechatFree}
|
||||
onPress={() => {
|
||||
const newSuperSinglesContr = [...superSinglesContr];
|
||||
newSuperSinglesContr[index].wechatFree =
|
||||
!newSuperSinglesContr[index].wechatFree;
|
||||
setSuperSinglesContr(newSuperSinglesContr);
|
||||
}}
|
||||
iconType="ionicon"
|
||||
checkedIcon="checkmark-circle"
|
||||
uncheckedIcon="ellipse-outline"
|
||||
checkedColor="#FF669E"
|
||||
containerStyle={tailwind("p-0 m-0 bg-transparent")}
|
||||
size={20}
|
||||
></CheckBox>
|
||||
<Text style={tailwind("ml-1 text-sm text-white")}>赠送微信</Text>
|
||||
</View>
|
||||
</View>
|
||||
</View>
|
||||
</View>
|
||||
);
|
||||
};
|
||||
|
||||
export default function SpacePaymentSetting({ navigation, route }) {
|
||||
const tailwind = useTailwind();
|
||||
const insets = useSafeAreaInsets();
|
||||
|
||||
const data = route.params.data;
|
||||
|
||||
const [openSuper, setOpenSuper] = useState(true);
|
||||
const [spacePrice, setSpacePrice] = useState("");
|
||||
const [spacePriceAble, setSpacePriceAble] = useState(false);
|
||||
const [ironFanPrice, setIronFanPrice] = useState("");
|
||||
const [tiefenPriceAble, setTiefenPriceAble] = useState(false);
|
||||
const [isSubmitting, setIsSubmitting] = useState(false);
|
||||
const [superSingleCheckeds, setSuperSingleCheckeds] = useState([]);
|
||||
|
||||
//解锁空间价格
|
||||
const [spacePrice, setSpacePrice] = useState(
|
||||
(data?.admission_price / 100).toString()
|
||||
);
|
||||
const [superSinglesContr, setSuperSinglesContr] = useState([
|
||||
{ enable: false, price: "0", wechatFree: false, key: 0 },
|
||||
{ enable: false, price: "0", wechatFree: false, key: 4 },
|
||||
{ enable: false, price: "0", wechatFree: false, key: 3 },
|
||||
{ enable: false, price: "0", wechatFree: false, key: 2 },
|
||||
{ enable: false, price: "0", wechatFree: false, key: 1 },
|
||||
]);
|
||||
const [spacePriceInfo, setSpacePriceInfo] = useState(null);
|
||||
const spacePriceRef = useRef(null);
|
||||
const ironFanPriceRef = useRef(null);
|
||||
useEffect(() => {
|
||||
const account = get("account");
|
||||
getStreamerInfo(Number(account.mid)).then((res) => {
|
||||
// 新版本
|
||||
const priceList = res.superfan_price_list ?? [
|
||||
{
|
||||
enable: false,
|
||||
price: "0",
|
||||
is_superfanship_give_wechat: false,
|
||||
key: 0,
|
||||
},
|
||||
{
|
||||
enable: false,
|
||||
price: "0",
|
||||
is_superfanship_give_wechat: false,
|
||||
key: 4,
|
||||
},
|
||||
{
|
||||
enable: false,
|
||||
price: "0",
|
||||
is_superfanship_give_wechat: false,
|
||||
key: 3,
|
||||
},
|
||||
{
|
||||
enable: false,
|
||||
price: "0",
|
||||
is_superfanship_give_wechat: false,
|
||||
key: 2,
|
||||
},
|
||||
{
|
||||
enable: false,
|
||||
price: "0",
|
||||
is_superfanship_give_wechat: false,
|
||||
key: 1,
|
||||
},
|
||||
];
|
||||
const haveChecked = priceList
|
||||
.map((it, index) => ({ ...it, index }))
|
||||
.filter((it) => it.enable);
|
||||
// if (haveChecked.length > 0) {
|
||||
// setSuperSingleChecked(haveChecked[0].period);
|
||||
// }
|
||||
setSuperSingleCheckeds(
|
||||
priceList
|
||||
.map((it, index) => ({ ...it, index }))
|
||||
.filter((it) => it.enable)
|
||||
.map((it) => superSingles[it.index].index)
|
||||
);
|
||||
setOpenSuper(!!res.is_superfanship_enabled);
|
||||
setSuperSinglesContr(
|
||||
priceList.map((it, index) => ({
|
||||
enable: !!it.enable,
|
||||
price: (it.price / 100).toString(),
|
||||
wechatFree: !!it.is_superfanship_give_wechat,
|
||||
key: index ? 5 - index : index,
|
||||
}))
|
||||
);
|
||||
setSpacePriceInfo(res);
|
||||
});
|
||||
}, []);
|
||||
|
||||
//铁粉价格
|
||||
const [ironFanPrice, setIronFanPrice] = useState(
|
||||
(data?.ironfanship_price / 100).toString()
|
||||
);
|
||||
|
||||
//启用超粉功能
|
||||
const [isSuperFanOn, setIsSuperFanOn] = useState(
|
||||
data?.is_superfanship_enabled === 1 ? true : false
|
||||
);
|
||||
|
||||
//超粉价格
|
||||
const [superFanPrice, setSuperFanPrice] = useState(
|
||||
(data?.superfanship_price / 100).toString()
|
||||
);
|
||||
|
||||
//超粉单次开通有效期
|
||||
const [superFanExpiration, setSuperFanExpiration] = useState(
|
||||
data?.superfanship_valid_period
|
||||
);
|
||||
|
||||
//是否开通超粉送微信
|
||||
const [unlockWechat, setUnlockWechat] = useState(
|
||||
data?.is_superfanship_give_wechat === 1 ? true : false
|
||||
);
|
||||
|
||||
const handleSubmit = async () => {
|
||||
if (!spacePrice || !ironFanPrice) {
|
||||
Toast.show({
|
||||
type: "error",
|
||||
text1: "请完善内容后提交",
|
||||
topOffset: 60,
|
||||
});
|
||||
return;
|
||||
useEffect(() => {
|
||||
if (!spacePriceInfo) return;
|
||||
const { admission_price, ironfanship_price } = spacePriceInfo;
|
||||
if (admission_price > 0) {
|
||||
setSpacePrice((admission_price / 100).toString());
|
||||
}
|
||||
if (isSuperFanOn && !superFanPrice) {
|
||||
if (ironfanship_price > 0) {
|
||||
setIronFanPrice((ironfanship_price / 100).toString());
|
||||
}
|
||||
}, [spacePriceInfo]);
|
||||
const listItemWithCheckboxMemo = useMemo(() => {
|
||||
return superSingles.map((item, index) => (
|
||||
<View key={item.key}>
|
||||
<ListItemWithCheckbox
|
||||
superSingle={item}
|
||||
superSinglesContr={superSinglesContr}
|
||||
setSuperSinglesContr={setSuperSinglesContr}
|
||||
// superSingleCheckeds={superSingleChecked}
|
||||
superSingleCheckeds={superSingleCheckeds}
|
||||
setSuperSingleCheckeds={setSuperSingleCheckeds}
|
||||
index={index}
|
||||
/>
|
||||
</View>
|
||||
));
|
||||
}, [superSingleCheckeds, superSinglesContr]);
|
||||
const handleSubmit = async () => {
|
||||
const superSingle = [...superSinglesContr];
|
||||
const openSuperEveryFalse = Object.values(superSingle).every(
|
||||
(it) => !it.enable
|
||||
);
|
||||
if (!spacePrice || !ironFanPrice || (openSuper && openSuperEveryFalse)) {
|
||||
Toast.show({
|
||||
type: "error",
|
||||
text1: "请填写超粉价格",
|
||||
text1: "请完善档位内容后提交",
|
||||
topOffset: 60,
|
||||
});
|
||||
return;
|
||||
}
|
||||
const _spacePrice = parseInt(spacePrice * 100, 10);
|
||||
if (isNaN(_spacePrice) || _spacePrice < 0) {
|
||||
if (isNaN(_spacePrice) || _spacePrice < 0 || _spacePrice > 388800) {
|
||||
Toast.show({
|
||||
type: "error",
|
||||
text1: "请输入有效的解锁空间价格",
|
||||
|
@ -86,83 +272,87 @@ export default function SpacePaymentSetting({ navigation, route }) {
|
|||
});
|
||||
return;
|
||||
}
|
||||
const _superFanPrice = parseInt(superFanPrice * 100, 10);
|
||||
if (
|
||||
isSuperFanOn &&
|
||||
(isNaN(_superFanPrice) || _superFanPrice < 100 || _superFanPrice > 388800)
|
||||
) {
|
||||
Toast.show({
|
||||
type: "error",
|
||||
text1: "请输入有效的超粉价格",
|
||||
topOffset: 60,
|
||||
let isPrice = false;
|
||||
if (openSuper) {
|
||||
Object.values(superSingle).forEach((it) => {
|
||||
if (it.enable) {
|
||||
const superFanPrice = it.price;
|
||||
if (!superFanPrice) {
|
||||
Toast.show({
|
||||
type: "error",
|
||||
text1: "请填写超粉价格",
|
||||
topOffset: 60,
|
||||
});
|
||||
isPrice = true;
|
||||
return;
|
||||
} else {
|
||||
const _superFanPrice = parseInt(superFanPrice * 100, 10);
|
||||
if (
|
||||
openSuper &&
|
||||
(isNaN(_superFanPrice) ||
|
||||
_superFanPrice < 100 ||
|
||||
_superFanPrice > 388800)
|
||||
) {
|
||||
isPrice = true;
|
||||
Toast.show({
|
||||
type: "error",
|
||||
text1: "请输入有效的超粉价格",
|
||||
topOffset: 60,
|
||||
});
|
||||
return;
|
||||
}
|
||||
if (openSuper && _superFanPrice <= _ironFanPrice) {
|
||||
isPrice = true;
|
||||
Toast.show({
|
||||
type: "error",
|
||||
text1: "请输入大于铁粉价格的超粉价格",
|
||||
topOffset: 60,
|
||||
});
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
return;
|
||||
}
|
||||
if (isSuperFanOn && _superFanPrice <= _ironFanPrice) {
|
||||
Toast.show({
|
||||
type: "error",
|
||||
text1: "请输入大于铁粉价格的超粉价格",
|
||||
topOffset: 60,
|
||||
});
|
||||
return;
|
||||
}
|
||||
if (
|
||||
isSuperFanOn &&
|
||||
superFanExpiration !== 0 &&
|
||||
superFanExpiration !== 1 &&
|
||||
superFanExpiration !== 2 &&
|
||||
superFanExpiration !== 3 &&
|
||||
superFanExpiration !== 4
|
||||
) {
|
||||
Toast.show({
|
||||
type: "error",
|
||||
text1: "请选择超粉有效期",
|
||||
topOffset: 60,
|
||||
});
|
||||
return;
|
||||
}
|
||||
if (isPrice) return;
|
||||
|
||||
if (isSubmitting) return;
|
||||
|
||||
const superfan_price_list = superSinglesContr.map((it, index) => ({
|
||||
period: it.key,
|
||||
enable: it.enable ? 1 : 0,
|
||||
price: parseInt(it.price * 100, 10),
|
||||
is_superfanship_give_wechat: it.wechatFree ? 1 : 0,
|
||||
}));
|
||||
setIsSubmitting(true);
|
||||
|
||||
const apiUrl = process.env.EXPO_PUBLIC_API_URL;
|
||||
|
||||
try {
|
||||
const base = await baseRequest();
|
||||
const body = {
|
||||
id: data.id,
|
||||
id: parseInt(route.params.data.id, 10),
|
||||
admission_price: parseInt(spacePrice * 100, 10),
|
||||
ironfanship_price: parseInt(ironFanPrice * 100, 10),
|
||||
is_superfanship_enabled: isSuperFanOn ? 1 : 0,
|
||||
superfanship_price: parseInt(superFanPrice * 100, 10),
|
||||
superfanship_valid_period: superFanExpiration,
|
||||
is_superfanship_give_wechat: unlockWechat ? 1 : 0,
|
||||
...base,
|
||||
is_superfanship_enabled: openSuper ? 1 : 0,
|
||||
superfan_price_list,
|
||||
};
|
||||
const signature = await generateSignature(body);
|
||||
const _response = await fetch(
|
||||
`${apiUrl}/api/zone/update?signature=${signature}`,
|
||||
const _data = await requireAPI(
|
||||
"POST",
|
||||
"/api/zone/update",
|
||||
{
|
||||
method: "POST",
|
||||
headers: {
|
||||
"Content-Type": "application/json",
|
||||
},
|
||||
body: JSON.stringify(body),
|
||||
}
|
||||
body,
|
||||
},
|
||||
true
|
||||
);
|
||||
const _data = await _response.json();
|
||||
if (_data.ret === -1) {
|
||||
Toast.show({
|
||||
type: "error",
|
||||
text1: _data.msg,
|
||||
topOffset: 60,
|
||||
icon: "error",
|
||||
content: _data.msg,
|
||||
position: "top",
|
||||
});
|
||||
return;
|
||||
}
|
||||
Toast.show({
|
||||
type: "success",
|
||||
text1: "修改成功,请重进空间刷新查看",
|
||||
topOffset: 60,
|
||||
icon: "success",
|
||||
content: "修改成功,请重进空间刷新查看",
|
||||
position: "top",
|
||||
});
|
||||
navigation.goBack();
|
||||
} catch (error) {
|
||||
|
@ -171,224 +361,131 @@ export default function SpacePaymentSetting({ navigation, route }) {
|
|||
setIsSubmitting(false);
|
||||
}
|
||||
};
|
||||
|
||||
return (
|
||||
<ScrollView
|
||||
style={{
|
||||
paddingBottom: insets.bottom,
|
||||
paddingLeft: insets.left,
|
||||
paddingRight: insets.right,
|
||||
...tailwind("flex-1"),
|
||||
}}
|
||||
<KeyboardAvoidingView
|
||||
style={tailwind("flex-1 p-4")}
|
||||
behavior={Platform.OS == "ios" ? "padding" : "height"}
|
||||
keyboardVerticalOffset={insets.bottom + 60}
|
||||
>
|
||||
<View style={tailwind("p-4")}>
|
||||
<View style={tailwind("flex flex-row items-center justify-between")}>
|
||||
<Text style={tailwind("text-base font-medium text-white mt-4 mb-1")}>
|
||||
<Text style={tailwind("text-[#F53030]")}>*</Text>解锁空间价格
|
||||
</Text>
|
||||
<Text
|
||||
style={tailwind("text-sm font-medium text-[#FFFFFF80] mt-4 mb-1")}
|
||||
>
|
||||
¥0~3888,仅支持整数
|
||||
</Text>
|
||||
</View>
|
||||
<TextInput
|
||||
value={spacePrice}
|
||||
onChangeText={(value) => setSpacePrice(value)}
|
||||
keyboardType="numeric"
|
||||
placeholder="解锁后可查看空间内免费动态"
|
||||
placeholderTextColor="#FFFFFF80"
|
||||
style={tailwind("text-white")}
|
||||
underlineColorAndroid="transparent"
|
||||
textAlign="top"
|
||||
/>
|
||||
<Divider style={tailwind("my-2")} />
|
||||
<View style={tailwind("flex flex-row items-center justify-between")}>
|
||||
<Text style={tailwind("text-base font-medium text-white mt-4 mb-1")}>
|
||||
<Text style={tailwind("text-[#F53030]")}>*</Text>铁粉价格
|
||||
</Text>
|
||||
<Text
|
||||
style={tailwind("text-sm font-medium text-[#FFFFFF80] mt-4 mb-1")}
|
||||
>
|
||||
¥1~3888,仅支持整数
|
||||
</Text>
|
||||
</View>
|
||||
<TextInput
|
||||
value={ironFanPrice}
|
||||
onChangeText={(value) => setIronFanPrice(value)}
|
||||
keyboardType="numeric"
|
||||
placeholder="解锁后可查看空间内铁粉专享动态"
|
||||
placeholderTextColor="#FFFFFF80"
|
||||
style={tailwind("text-white")}
|
||||
underlineColorAndroid="transparent"
|
||||
textAlign="top"
|
||||
/>
|
||||
<Divider style={tailwind("my-2")} />
|
||||
<View
|
||||
style={tailwind(
|
||||
"flex flex-row items-center justify-between mt-4 mb-1"
|
||||
)}
|
||||
>
|
||||
<Text style={tailwind("text-base font-medium text-white")}>
|
||||
<Text style={tailwind("text-[#F53030]")}>*</Text>启用超粉功能
|
||||
</Text>
|
||||
<Switch
|
||||
value={isSuperFanOn}
|
||||
onValueChange={(value) => setIsSuperFanOn(value)}
|
||||
thumbColor="#ffffff"
|
||||
trackColor={{ true: "#FF669E", false: "#FFFFFF1A" }}
|
||||
style={tailwind("mx-1")}
|
||||
/>
|
||||
</View>
|
||||
<Divider style={tailwind("my-2")} />
|
||||
{isSuperFanOn && (
|
||||
<View>
|
||||
<View
|
||||
style={tailwind("flex flex-row items-center justify-between")}
|
||||
>
|
||||
<Text
|
||||
style={tailwind("text-base font-medium text-white mt-4 mb-1")}
|
||||
>
|
||||
超粉价格
|
||||
</Text>
|
||||
<Text
|
||||
style={tailwind(
|
||||
"text-sm font-medium text-[#FFFFFF80] mt-4 mb-1"
|
||||
)}
|
||||
>
|
||||
¥1~3888,仅支持整数
|
||||
</Text>
|
||||
{/* 内容 */}
|
||||
<ScrollView
|
||||
style={{
|
||||
paddingBottom: insets.bottom,
|
||||
paddingLeft: insets.left,
|
||||
paddingRight: insets.right,
|
||||
}}
|
||||
>
|
||||
<View style={tailwind("mt-4")}>
|
||||
<View style={tailwind("flex flex-row justify-between items-center")}>
|
||||
<View style={tailwind("flex-row text-sm")}>
|
||||
<Text style={tailwind("text-white")}>解锁空间价格</Text>
|
||||
<Text style={tailwind("text-[#F53030]")}>*</Text>
|
||||
</View>
|
||||
<TextInput
|
||||
value={superFanPrice}
|
||||
onChangeText={(value) => setSuperFanPrice(value)}
|
||||
keyboardType="numeric"
|
||||
placeholder="最高身份,可查看空间所有动态"
|
||||
placeholderTextColor="#FFFFFF80"
|
||||
style={tailwind("text-white")}
|
||||
underlineColorAndroid="transparent"
|
||||
textAlign="top"
|
||||
/>
|
||||
<Divider style={tailwind("my-2")} />
|
||||
<Text
|
||||
style={tailwind("text-base font-medium text-white mt-4 mb-1")}
|
||||
>
|
||||
超粉单次开通有效期
|
||||
<Text style={tailwind("text-white text-xs")}>
|
||||
(成为空间成员,可查看免费帖)
|
||||
</Text>
|
||||
<View style={tailwind("flex flex-row flex-wrap")}>
|
||||
<View style={tailwind("flex flex-row basis-1/3 items-center")}>
|
||||
<CheckBox
|
||||
checked={superFanExpiration === 0}
|
||||
onPress={() => setSuperFanExpiration(0)}
|
||||
iconType="material-community"
|
||||
checkedIcon="checkbox-marked"
|
||||
uncheckedIcon="checkbox-blank-outline"
|
||||
checkedColor="#FF669E"
|
||||
containerStyle={tailwind("p-0 m-0 bg-transparent")}
|
||||
size={18}
|
||||
/>
|
||||
<Text
|
||||
onPress={() => setSuperFanExpiration(0)}
|
||||
style={tailwind("text-base font-medium text-white")}
|
||||
>
|
||||
永久
|
||||
</Text>
|
||||
</View>
|
||||
<View style={tailwind("flex flex-row basis-1/3 items-center")}>
|
||||
<CheckBox
|
||||
checked={superFanExpiration === 4}
|
||||
onPress={() => setSuperFanExpiration(4)}
|
||||
iconType="material-community"
|
||||
checkedIcon="checkbox-marked"
|
||||
uncheckedIcon="checkbox-blank-outline"
|
||||
checkedColor="#FF669E"
|
||||
containerStyle={tailwind("p-0 m-0 bg-transparent")}
|
||||
size={18}
|
||||
/>
|
||||
<Text
|
||||
onPress={() => setSuperFanExpiration(4)}
|
||||
style={tailwind("text-base font-medium text-white")}
|
||||
>
|
||||
年度
|
||||
</Text>
|
||||
</View>
|
||||
<View style={tailwind("flex flex-row basis-1/3 items-center")}>
|
||||
<CheckBox
|
||||
checked={superFanExpiration === 3}
|
||||
onPress={() => setSuperFanExpiration(3)}
|
||||
iconType="material-community"
|
||||
checkedIcon="checkbox-marked"
|
||||
uncheckedIcon="checkbox-blank-outline"
|
||||
checkedColor="#FF669E"
|
||||
containerStyle={tailwind("p-0 m-0 bg-transparent")}
|
||||
size={18}
|
||||
/>
|
||||
<Text
|
||||
onPress={() => setSuperFanExpiration(3)}
|
||||
style={tailwind("text-base font-medium text-white")}
|
||||
>
|
||||
半年
|
||||
</Text>
|
||||
</View>
|
||||
<View
|
||||
style={tailwind("flex flex-row basis-1/3 items-center mt-2")}
|
||||
>
|
||||
<CheckBox
|
||||
checked={superFanExpiration === 2}
|
||||
onPress={() => setSuperFanExpiration(2)}
|
||||
iconType="material-community"
|
||||
checkedIcon="checkbox-marked"
|
||||
uncheckedIcon="checkbox-blank-outline"
|
||||
checkedColor="#FF669E"
|
||||
containerStyle={tailwind("p-0 m-0 bg-transparent")}
|
||||
size={18}
|
||||
/>
|
||||
<Text
|
||||
onPress={() => setSuperFanExpiration(2)}
|
||||
style={tailwind("text-base font-medium text-white")}
|
||||
>
|
||||
季度
|
||||
</Text>
|
||||
</View>
|
||||
<View
|
||||
style={tailwind("flex flex-row basis-1/3 items-center mt-2")}
|
||||
>
|
||||
<CheckBox
|
||||
checked={superFanExpiration === 1}
|
||||
onPress={() => setSuperFanExpiration(1)}
|
||||
iconType="material-community"
|
||||
checkedIcon="checkbox-marked"
|
||||
uncheckedIcon="checkbox-blank-outline"
|
||||
checkedColor="#FF669E"
|
||||
containerStyle={tailwind("p-0 m-0 bg-transparent")}
|
||||
size={18}
|
||||
/>
|
||||
<Text
|
||||
onPress={() => setSuperFanExpiration(1)}
|
||||
style={tailwind("text-base font-medium text-white")}
|
||||
>
|
||||
月度
|
||||
</Text>
|
||||
</View>
|
||||
</View>
|
||||
<Divider style={tailwind("my-2")} />
|
||||
<View
|
||||
style={tailwind(
|
||||
"flex flex-row items-center justify-between mt-4 mb-1"
|
||||
)}
|
||||
>
|
||||
<Text style={tailwind("text-base font-medium text-white")}>
|
||||
开通超粉赠送微信
|
||||
</Text>
|
||||
<Switch
|
||||
value={unlockWechat}
|
||||
onValueChange={(value) => setUnlockWechat(value)}
|
||||
thumbColor="#ffffff"
|
||||
trackColor={{ true: "#FF669E", false: "#FFFFFF1A" }}
|
||||
style={tailwind("mx-1")}
|
||||
</View>
|
||||
<View
|
||||
style={tailwind(
|
||||
"mt-2 px-4 py-3 h-12 rounded-lg bg-[#FFFFFF1A] flex-row justify-between items-center"
|
||||
)}
|
||||
>
|
||||
<View style={tailwind("flex-row items-center")}>
|
||||
<Text style={tailwind("text-[#FFFFFF80] text-sm mr-1")}>¥</Text>
|
||||
<TextInput
|
||||
ref={spacePriceRef}
|
||||
focusable={spacePriceAble}
|
||||
value={spacePrice}
|
||||
onChangeText={setSpacePrice}
|
||||
keyboardType="numeric"
|
||||
placeholder="0~3888,仅支持整数"
|
||||
placeholderTextColor="#FFFFFF80"
|
||||
underlineColorAndroid="transparent"
|
||||
style={{
|
||||
...tailwind("text-white"),
|
||||
maxWidth: 250,
|
||||
minWidth: 150,
|
||||
}}
|
||||
/>
|
||||
</View>
|
||||
<Divider style={tailwind("my-2")} />
|
||||
<TouchableOpacity
|
||||
onPress={() => {
|
||||
spacePriceRef.current && spacePriceRef.current.focus();
|
||||
}}
|
||||
>
|
||||
<Text style={tailwind("text-[#FFFFFF80] text-xs")}>点击编辑</Text>
|
||||
</TouchableOpacity>
|
||||
</View>
|
||||
</View>
|
||||
<View style={tailwind("my-4")}>
|
||||
<View style={tailwind("flex flex-row justify-between items-center")}>
|
||||
<View style={tailwind("flex-row text-sm")}>
|
||||
<Text style={tailwind("text-white")}>铁粉价格</Text>
|
||||
<Text style={tailwind("text-[#F53030]")}>*</Text>
|
||||
</View>
|
||||
<Text style={tailwind("text-white text-xs")}>
|
||||
(累计消费达成后解锁铁粉权益)
|
||||
</Text>
|
||||
</View>
|
||||
<View
|
||||
style={tailwind(
|
||||
"mt-2 px-4 py-3 h-12 rounded-lg bg-[#FFFFFF1A] flex-row justify-between items-center"
|
||||
)}
|
||||
>
|
||||
<View style={tailwind("flex-row items-center")}>
|
||||
<Text style={tailwind("text-[#FFFFFF80] text-sm mr-1")}>¥</Text>
|
||||
<TextInput
|
||||
ref={ironFanPriceRef}
|
||||
value={ironFanPrice}
|
||||
onChangeText={setIronFanPrice}
|
||||
keyboardType="numeric"
|
||||
placeholder="0~3888,仅支持整数"
|
||||
placeholderTextColor="#FFFFFF80"
|
||||
underlineColorAndroid="transparent"
|
||||
style={{
|
||||
...tailwind("text-white"),
|
||||
maxWidth: 250,
|
||||
minWidth: 150,
|
||||
}}
|
||||
/>
|
||||
</View>
|
||||
<TouchableOpacity
|
||||
onPress={() => {
|
||||
ironFanPriceRef.current && ironFanPriceRef.current.focus();
|
||||
}}
|
||||
>
|
||||
<Text style={tailwind("text-[#FFFFFF80] text-xs")}>点击编辑</Text>
|
||||
</TouchableOpacity>
|
||||
</View>
|
||||
</View>
|
||||
<View style={tailwind("my-4 flex-row justify-between items-center")}>
|
||||
<View style={tailwind("text-sm")}>
|
||||
<Text style={tailwind("text-white")}>超粉功能</Text>
|
||||
</View>
|
||||
<View style={tailwind("flex-row items-center")}>
|
||||
<Text style={tailwind("text-white text-xs mr-2")}>是否启用</Text>
|
||||
<View>
|
||||
<Switch
|
||||
value={openSuper}
|
||||
onValueChange={(value) => setOpenSuper(value)}
|
||||
thumbColor="#ffffff"
|
||||
trackColor={{ true: "#FF669E", false: "#FFFFFF1A" }}
|
||||
/>
|
||||
</View>
|
||||
</View>
|
||||
</View>
|
||||
{openSuper && (
|
||||
<View style={tailwind("mt-4")}>
|
||||
<View style={tailwind("flex-row justify-between items-center")}>
|
||||
<View style={tailwind("flex-row items-center text-sm")}>
|
||||
<Text style={tailwind("text-white")}>超粉单次开通类型</Text>
|
||||
<Text style={tailwind("text-[#F53030]")}>*</Text>
|
||||
</View>
|
||||
<Text style={tailwind("text-white text-xs")}>
|
||||
(付费后解锁对应期限超粉权益)
|
||||
</Text>
|
||||
</View>
|
||||
<View>{listItemWithCheckboxMemo}</View>
|
||||
</View>
|
||||
)}
|
||||
<Button
|
||||
|
@ -400,12 +497,12 @@ export default function SpacePaymentSetting({ navigation, route }) {
|
|||
disabledTitleStyle={tailwind("text-white")}
|
||||
onPress={handleSubmit}
|
||||
titleStyle={tailwind("text-base")}
|
||||
containerStyle={tailwind("mt-4")}
|
||||
containerStyle={tailwind("mt-16")}
|
||||
>
|
||||
{isSubmitting && <ActivityIndicator size="small" color="white" />}
|
||||
{isSubmitting ? "正在保存..." : "保存设置"}
|
||||
</Button>
|
||||
</View>
|
||||
</ScrollView>
|
||||
</ScrollView>
|
||||
</KeyboardAvoidingView>
|
||||
);
|
||||
}
|
||||
|
|
|
@ -17,7 +17,11 @@ export default function SpaceSetting({ navigation, route }) {
|
|||
<SpaceSettingStack.Screen
|
||||
name="SelectSpaceSettingItem"
|
||||
children={(props) => (
|
||||
<SelectSpaceSettingItem {...props} data={route.params.data} />
|
||||
<SelectSpaceSettingItem
|
||||
{...props}
|
||||
data={route.params.data}
|
||||
id={route.params.data.id}
|
||||
/>
|
||||
)}
|
||||
options={({ navigation }) => ({
|
||||
headerLeft: () => (
|
||||
|
|
Loading…
Reference in New Issue