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