From e0d492c442e4b0cf880d81f24f820250d2dba854 Mon Sep 17 00:00:00 2001 From: yezian Date: Sun, 28 Apr 2024 20:13:46 +0800 Subject: [PATCH] =?UTF-8?q?=E7=A9=BA=E9=97=B4=E5=8A=A8=E6=80=81=E5=AE=A1?= =?UTF-8?q?=E6=A0=B8=E5=8A=A0=E4=B8=8A=E5=8F=91=E5=B8=96=E4=BA=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/ZonePostMachineReview/index.jsx | 28 +++++++++++++++++++---- 1 file changed, 24 insertions(+), 4 deletions(-) diff --git a/src/pages/ZonePostMachineReview/index.jsx b/src/pages/ZonePostMachineReview/index.jsx index 3285bdf..e194f86 100644 --- a/src/pages/ZonePostMachineReview/index.jsx +++ b/src/pages/ZonePostMachineReview/index.jsx @@ -14,6 +14,22 @@ const ZonePostMachineReviewContent = (props) => { const current = props.current; //表头 const columns = [ + { + title: "发帖人", + dataIndex: "creator", + key: "creator", + render: (data) => ( +
+ +

+ ID:{data.user_id} +

+

+ 昵称:{data.name} +

+
+ ), + }, { title: "动态内容", dataIndex: "content", @@ -44,15 +60,19 @@ const ZonePostMachineReviewContent = (props) => { render: (data) => (

文案审核结果:

-

{data.text_audit_opinion}

+

+ {data.text_audit_opinion ? data.text_audit_opinion : "通过"} +


媒体审核结果:

-

{data.image_audit_opinion}

+

+ {data.image_audit_opinion ? data.image_audit_opinion : "通过"} +

), }, { - title: "提交时间", + title: "发布时间", dataIndex: "submitTime", key: "submitTime", }, @@ -124,7 +144,6 @@ const ZonePostMachineReviewContent = (props) => { }), }); const _data = await response.json(); - console.log(_data); if (_data.ret === -1) { alert(_data.msg); return; @@ -184,6 +203,7 @@ const ZonePostMachineReviewContent = (props) => { return { key: index, momentId: item.id, + creator: item.streamer_ext, content: { media: item.media_component, text: item.text,