广场动态增加状态判断
This commit is contained in:
parent
ca3149ec34
commit
2f7d1c76b7
|
@ -168,6 +168,14 @@ const PostMachineReviewContent = (props) => {
|
||||||
</p>
|
</p>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
if (!item?.status) {
|
||||||
|
return (
|
||||||
|
<p key={index} className="text-green-400">
|
||||||
|
正在审核中...
|
||||||
|
</p>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div key={index}>
|
<div key={index}>
|
||||||
<p className="text-red-400">图{index + 1}违规情况:</p>
|
<p className="text-red-400">图{index + 1}违规情况:</p>
|
||||||
|
|
Loading…
Reference in New Issue