From 97a3e498b48bb9c41005f29360761caa2c327301 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cjueweijue=E2=80=9D?= <“jueweijue@gmail.comgit config --global user.email “jueweijue@gmail.com> Date: Mon, 25 Dec 2023 17:20:32 +0800 Subject: [PATCH] =?UTF-8?q?=E5=9B=BE=E7=89=87/=E6=96=87=E6=9C=AC=E5=AE=A1?= =?UTF-8?q?=E6=A0=B8=E3=80=81=E4=B8=BB=E6=92=AD=E5=AE=9E=E5=90=8D=E8=AE=A4?= =?UTF-8?q?=E8=AF=81=E9=83=BD=E6=94=B9=E4=B8=BA=E4=B8=80=E6=AC=A1=E5=B1=95?= =?UTF-8?q?=E7=A4=BA200=E6=9D=A1=EF=BC=9B=E4=B8=BB=E6=92=AD=E5=85=A5?= =?UTF-8?q?=E9=A9=BB=E5=AE=A1=E6=89=B9=E4=BC=98=E5=8C=96=E5=B1=95=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/ImageMachineReview/index.jsx | 2 +- src/pages/StreamerJoin/index.jsx | 7 +++++-- src/pages/StreamerVerification/index.jsx | 3 +-- src/pages/TextMachineReview/index.jsx | 2 +- 4 files changed, 8 insertions(+), 6 deletions(-) diff --git a/src/pages/ImageMachineReview/index.jsx b/src/pages/ImageMachineReview/index.jsx index 2c88c1d..836be53 100644 --- a/src/pages/ImageMachineReview/index.jsx +++ b/src/pages/ImageMachineReview/index.jsx @@ -202,7 +202,7 @@ const ImageMachineReviewContent = (props) => { body: JSON.stringify({ status: querryStatus, offset: offset, - limit: 20, + limit: 200, ...base, }), }); diff --git a/src/pages/StreamerJoin/index.jsx b/src/pages/StreamerJoin/index.jsx index 47c7a7f..56a482d 100644 --- a/src/pages/StreamerJoin/index.jsx +++ b/src/pages/StreamerJoin/index.jsx @@ -27,13 +27,16 @@ const JoinContent = (props) => { 昵称:{data.name}
- 全网粉丝:{data.fans} + 全网粉丝:{data.fans}万
平台:{data.platforms}
- 性别:{data.gender} + 性别: + + {data.gender === 1 ? "女" : "男"} +
联系方式:{data.contact} diff --git a/src/pages/StreamerVerification/index.jsx b/src/pages/StreamerVerification/index.jsx index 1ad1cfc..db53b9b 100644 --- a/src/pages/StreamerVerification/index.jsx +++ b/src/pages/StreamerVerification/index.jsx @@ -158,7 +158,6 @@ const VerificationContent = (props) => { }), }); const approveData = await response.json(); - console.log(approveData); if (approveData.ret === -1) { alert(approveData.msg); return; @@ -199,7 +198,7 @@ const VerificationContent = (props) => { body: JSON.stringify({ status: querryStatus, offset: offset, - limit: 20, + limit: 200, ...base, }), }); diff --git a/src/pages/TextMachineReview/index.jsx b/src/pages/TextMachineReview/index.jsx index 2a206bf..df9643b 100644 --- a/src/pages/TextMachineReview/index.jsx +++ b/src/pages/TextMachineReview/index.jsx @@ -217,7 +217,7 @@ const TextMachineReviewContent = (props) => { body: JSON.stringify({ status: querryStatus, offset: offset, - limit: 20, + limit: 200, ...base, }), });