Merge pull request '修复展示bug' (#5) from zone into main
Reviewed-on: https://git.wishpal.cn/wishpal_ironfan/tiefen_space_op/pulls/5
This commit is contained in:
commit
43ebb222c3
|
@ -60,14 +60,10 @@ const ZonePostMachineReviewContent = (props) => {
|
|||
render: (data) => (
|
||||
<div className="flex flex-col">
|
||||
<p>文案审核结果:</p>
|
||||
<p className="text-green-400">
|
||||
{data.text_audit_opinion ? data.text_audit_opinion : "通过"}
|
||||
</p>
|
||||
<p className="text-green-400">{data.text_audit_opinion}</p>
|
||||
<hr className="w-full" />
|
||||
<p>媒体审核结果:</p>
|
||||
<p className="text-green-400">
|
||||
{data.image_audit_opinion ? data.image_audit_opinion : "通过"}
|
||||
</p>
|
||||
<p className="text-green-400">{data.image_audit_opinion}</p>
|
||||
</div>
|
||||
),
|
||||
},
|
||||
|
@ -193,7 +189,6 @@ const ZonePostMachineReviewContent = (props) => {
|
|||
}),
|
||||
});
|
||||
const temData = await response.json();
|
||||
console.log(temData);
|
||||
if (temData.ret === -1) {
|
||||
alert(temData.msg);
|
||||
return;
|
||||
|
|
Loading…
Reference in New Issue