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) => (
|
render: (data) => (
|
||||||
<div className="flex flex-col">
|
<div className="flex flex-col">
|
||||||
<p>文案审核结果:</p>
|
<p>文案审核结果:</p>
|
||||||
<p className="text-green-400">
|
<p className="text-green-400">{data.text_audit_opinion}</p>
|
||||||
{data.text_audit_opinion ? data.text_audit_opinion : "通过"}
|
|
||||||
</p>
|
|
||||||
<hr className="w-full" />
|
<hr className="w-full" />
|
||||||
<p>媒体审核结果:</p>
|
<p>媒体审核结果:</p>
|
||||||
<p className="text-green-400">
|
<p className="text-green-400">{data.image_audit_opinion}</p>
|
||||||
{data.image_audit_opinion ? data.image_audit_opinion : "通过"}
|
|
||||||
</p>
|
|
||||||
</div>
|
</div>
|
||||||
),
|
),
|
||||||
},
|
},
|
||||||
|
@ -193,7 +189,6 @@ const ZonePostMachineReviewContent = (props) => {
|
||||||
}),
|
}),
|
||||||
});
|
});
|
||||||
const temData = await response.json();
|
const temData = await response.json();
|
||||||
console.log(temData);
|
|
||||||
if (temData.ret === -1) {
|
if (temData.ret === -1) {
|
||||||
alert(temData.msg);
|
alert(temData.msg);
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in New Issue