修改广场动态
This commit is contained in:
parent
a7a07af414
commit
ca3149ec34
|
@ -53,27 +53,6 @@ const PostMachineReviewContent = (props) => {
|
||||||
</div>
|
</div>
|
||||||
),
|
),
|
||||||
},
|
},
|
||||||
{
|
|
||||||
title: "原内容",
|
|
||||||
dataIndex: "oldMedia",
|
|
||||||
key: "oldMedia",
|
|
||||||
render: (data) => (
|
|
||||||
<div className="flex flex-col">
|
|
||||||
<p className="text-red-400">
|
|
||||||
文案:<span className="text-black">{data.text}</span>
|
|
||||||
</p>
|
|
||||||
<p className="text-red-400">媒体:</p>
|
|
||||||
<div className="flex flex-wrap gap-1">
|
|
||||||
{data.media?.images?.map((item, index) => (
|
|
||||||
<Image key={index} src={item.urls[0]} width={100} />
|
|
||||||
))}
|
|
||||||
{data.media?.videos?.map((item, index) => (
|
|
||||||
<VideoPlayer key={index} url={item.urls[0]} width={150} />
|
|
||||||
))}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
),
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: "审核结果",
|
title: "审核结果",
|
||||||
dataIndex: "info",
|
dataIndex: "info",
|
||||||
|
@ -383,14 +362,6 @@ const PostMachineReviewContent = (props) => {
|
||||||
text: item.text_audit_task_vo.id,
|
text: item.text_audit_task_vo.id,
|
||||||
},
|
},
|
||||||
newMedia: {
|
newMedia: {
|
||||||
media: item.moment_audit_task.final_media
|
|
||||||
? item.moment_audit_task.final_media
|
|
||||||
: item.moment_audit_task.audited_media,
|
|
||||||
text: item.moment_audit_task.final_text
|
|
||||||
? item.moment_audit_task.final_text
|
|
||||||
: item.moment_audit_task.audited_text,
|
|
||||||
},
|
|
||||||
oldMedia: {
|
|
||||||
media: item.moment_audit_task.audited_media,
|
media: item.moment_audit_task.audited_media,
|
||||||
text: item.moment_audit_task.audited_text,
|
text: item.moment_audit_task.audited_text,
|
||||||
},
|
},
|
||||||
|
@ -504,7 +475,7 @@ export default function PostMachineReview() {
|
||||||
key: "operatorReviewing",
|
key: "operatorReviewing",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "审核中",
|
label: "机审中",
|
||||||
key: "machineReviewing",
|
key: "machineReviewing",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue