nieyuge 1 hafta önce
ebeveyn
işleme
80eb233670
1 değiştirilmiş dosya ile 1 ekleme ve 1 silme
  1. 1 1
      src/views/publishContent/videos/index.tsx

+ 1 - 1
src/views/publishContent/videos/index.tsx

@@ -109,7 +109,7 @@ const MyVideos: React.FC = () => {
 			title: '审核状态',
 			render: (_, record) => {
 				return <>
-					{record.auditStatus === 3 ? <><span className="text-red-500">审核不通过</span> <span className="text-blue-500 underline cursor-pointer"><Popover placement="top" content={record.auditReason}>(查看原因)</Popover></span></> : record.auditStatus === 2 ? <span className="text-green-500">审核通过</span> : <span className="text-black-500">审核中</span>}
+					{record.auditStatus === 3 ? <><span className="text-red-500">审核不通过</span> <span className="text-blue-500 underline cursor-pointer"><Popover placement="top" content={record.auditReason}>(查看原因)</Popover></span></> : record.auditStatus === 2 ? <span className="text-green-500">审核通过</span> : record.auditStatus === 1 ? <span className="text-black-500">审核中</span> : <span className="text-gray-500">待审核</span>}
 				</>
 			}
 		},