From 90c9cac703b1a7e075c097328ed366abce8d9533 Mon Sep 17 00:00:00 2001 From: al Date: Thu, 31 Oct 2024 18:16:47 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=85=A5=E9=A9=BB=E4=B8=A4?= =?UTF-8?q?=E4=B8=AA=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/my/createProfile/page.jsx | 76 +++++++++---------- app/my/page.js | 9 ++- .../setting/spacePaymentSetting/page.jsx | 2 +- 3 files changed, 46 insertions(+), 41 deletions(-) diff --git a/app/my/createProfile/page.jsx b/app/my/createProfile/page.jsx index f6a3f48..9fd04df 100644 --- a/app/my/createProfile/page.jsx +++ b/app/my/createProfile/page.jsx @@ -136,7 +136,7 @@ export default function CreateProfile() { return; } const _spacePrice = parseInt(spacePrice * 100, 10); - if (isNaN(_spacePrice) || _spacePrice < 0) { + if (isNaN(_spacePrice) || _spacePrice < 0 || _spacePrice > 388800) { Toast.show({ icon: "fail", content: "请输入有效的解锁空间价格", @@ -203,41 +203,41 @@ export default function CreateProfile() { })); setIsSubmitting(true); - // try { - // const body = { - // profile: spaceIntro, - // admission_price: parseInt(spacePrice * 100, 10), - // ironfanship_price: parseInt(ironFanPrice * 100, 10), - // is_superfanship_enabled: openSuper ? 1 : 0, - // superfan_price_list, - // }; - // const _data = await requireAPI( - // "POST", - // "/api/zone/create", - // { - // body, - // }, - // true - // ); - // if (_data.ret === -1) { - // Toast.show({ - // icon: "fail", - // content: _data.msg, - // position: "top", - // }); - // return; - // } - // Toast.show({ - // icon: "success", - // content: "修改成功,请重进空间刷新查看", - // position: "top", - // }); - // router.back(); - // } catch (error) { - // console.error(error); - // } finally { - // setIsSubmitting(false); - // } + try { + const body = { + profile: spaceIntro, + admission_price: parseInt(spacePrice * 100, 10), + ironfanship_price: parseInt(ironFanPrice * 100, 10), + is_superfanship_enabled: openSuper ? 1 : 0, + superfan_price_list, + }; + const _data = await requireAPI( + "POST", + "/api/zone/create", + { + body, + }, + true + ); + if (_data.ret === -1) { + Toast.show({ + icon: "fail", + content: _data.msg, + position: "top", + }); + return; + } + Toast.show({ + icon: "success", + content: "修改成功,请重进空间刷新查看", + position: "top", + }); + router.back(); + } catch (error) { + console.error(error); + } finally { + setIsSubmitting(false); + } }; return (
@@ -254,7 +254,7 @@ export default function CreateProfile() { />

- 空间付费设置 + 开通空间

{/* 内容 */} @@ -294,7 +294,7 @@ export default function CreateProfile() { id="spacePrice" type="number" fontSize="22" - placeholder="1~3888,仅支持整数" + placeholder="0~3888,仅支持整数" value={formData.spacePrice} onChange={(value) => setFormData((old) => ({ ...old, spacePrice: value })) diff --git a/app/my/page.js b/app/my/page.js index f8fa169..e5eb209 100644 --- a/app/my/page.js +++ b/app/my/page.js @@ -123,8 +123,13 @@ const My = () => { iconUrl: "icons/32DP/editprofile.png", title: "完善资料", subTitle: "完善后解锁全部功能", - status: !statuses.data.details_status ? "审核中" : "未通过", - disable: statuses.data.details_status == 2, + status: + statuses.data.details_status == 0 + ? "审核中" + : statuses.data.details_status == 2 + ? "未通过" + : null, + // disable: !isInJoinProgress, }, ...currentOld, ]; diff --git a/app/space/setting/spacePaymentSetting/page.jsx b/app/space/setting/spacePaymentSetting/page.jsx index b3d6419..6e68d88 100644 --- a/app/space/setting/spacePaymentSetting/page.jsx +++ b/app/space/setting/spacePaymentSetting/page.jsx @@ -150,7 +150,7 @@ export default function spacePaymentSetting() { return; } const _spacePrice = parseInt(spacePrice * 100, 10); - if (isNaN(_spacePrice) || _spacePrice < 0) { + if (isNaN(_spacePrice) || _spacePrice < 0 || _spacePrice > 388800) { Toast.show({ icon: "fail", content: "请输入有效的解锁空间价格",