图片/文本审核、主播实名认证都改为一次展示200条;主播入驻审批优化展示
This commit is contained in:
parent
aa1ed9f466
commit
97a3e498b4
|
@ -202,7 +202,7 @@ const ImageMachineReviewContent = (props) => {
|
|||
body: JSON.stringify({
|
||||
status: querryStatus,
|
||||
offset: offset,
|
||||
limit: 20,
|
||||
limit: 200,
|
||||
...base,
|
||||
}),
|
||||
});
|
||||
|
|
|
@ -27,13 +27,16 @@ const JoinContent = (props) => {
|
|||
昵称:<span className="text-red-400">{data.name}</span>
|
||||
</p>
|
||||
<p>
|
||||
全网粉丝:<span className="text-red-400">{data.fans}</span>
|
||||
全网粉丝:<span className="text-red-400">{data.fans}万</span>
|
||||
</p>
|
||||
<p>
|
||||
平台:<span className="text-red-400">{data.platforms}</span>
|
||||
</p>
|
||||
<p>
|
||||
性别:<span className="text-red-400">{data.gender}</span>
|
||||
性别:
|
||||
<span className="text-red-400">
|
||||
{data.gender === 1 ? "女" : "男"}
|
||||
</span>
|
||||
</p>
|
||||
<p>
|
||||
联系方式:<span className="text-red-400">{data.contact}</span>
|
||||
|
|
|
@ -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,
|
||||
}),
|
||||
});
|
||||
|
|
|
@ -217,7 +217,7 @@ const TextMachineReviewContent = (props) => {
|
|||
body: JSON.stringify({
|
||||
status: querryStatus,
|
||||
offset: offset,
|
||||
limit: 20,
|
||||
limit: 200,
|
||||
...base,
|
||||
}),
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue