From 35ea98b155aa03f4693bb97f73f1a3806e34541d Mon Sep 17 00:00:00 2001 From: yezian Date: Sat, 24 Feb 2024 15:32:21 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=8A=A8=E6=80=81=E6=9C=BA?= =?UTF-8?q?=E5=AE=A1=E9=A1=B5=E9=9D=A2bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/PostMachineReview/index.jsx | 65 ++++++++++++++------------- 1 file changed, 35 insertions(+), 30 deletions(-) diff --git a/src/pages/PostMachineReview/index.jsx b/src/pages/PostMachineReview/index.jsx index bc30ef7..075780a 100644 --- a/src/pages/PostMachineReview/index.jsx +++ b/src/pages/PostMachineReview/index.jsx @@ -170,36 +170,41 @@ const PostMachineReviewContent = (props) => {

图{index + 1}违规情况:

- {item.porn_scene_suggestion !== "pass" && ( -
-

色情审核:

-
    -
  • 建议:{item.porn_scene_suggestion}
  • -
  • 结果:{item.porn_scene_label}
  • -
  • 结果:{item.porn_scene_rate.toFixed(1)}
  • -
-
- )} - {item.terrorism_scene_suggestion !== "pass" && ( -
-

暴恐审核:

-
    -
  • 建议:{item.terrorism_scene_suggestion}
  • -
  • 结果:{item.terrorism_scene_label}
  • -
  • 结果:{item.terrorism_scene_rate.toFixed(1)}
  • -
-
- )} - {item.live_scene_suggestion !== "pass" && ( -
-

不良审核:

-
    -
  • 建议:{item.live_scene_suggestion}
  • -
  • 结果:{item.live_scene_label}
  • -
  • 结果:{item.live_scene_rate.toFixed(1)}
  • -
-
- )} + {item.porn_scene_suggestion && + item.porn_scene_suggestion !== "pass" && ( +
+

色情审核:

+
    +
  • 建议:{item.porn_scene_suggestion}
  • +
  • 结果:{item.porn_scene_label}
  • +
  • 结果:{item.porn_scene_rate.toFixed(1)}
  • +
+
+ )} + {item.terrorism_scene_suggestion && + item.terrorism_scene_suggestion !== "pass" && ( +
+

暴恐审核:

+
    +
  • 建议:{item.terrorism_scene_suggestion}
  • +
  • 结果:{item.terrorism_scene_label}
  • +
  • + 结果:{item.terrorism_scene_rate.toFixed(1)} +
  • +
+
+ )} + {item.live_scene_suggestion && + item.live_scene_suggestion !== "pass" && ( +
+

不良审核:

+
    +
  • 建议:{item.live_scene_suggestion}
  • +
  • 结果:{item.live_scene_label}
  • +
  • 结果:{item.live_scene_rate.toFixed(1)}
  • +
+
+ )}
);