|
@@ -250,14 +250,14 @@ export const tableConfigDetail = (): TableProps<any>['columns'] => {
|
|
|
},
|
|
|
{
|
|
|
title: '组件审核结果',
|
|
|
- dataIndex: 'reviewStatus',
|
|
|
- key: 'reviewStatus',
|
|
|
+ dataIndex: 'temReviewStatus',
|
|
|
+ key: 'temReviewStatus',
|
|
|
width: 120,
|
|
|
- render: (value, records) => {
|
|
|
+ render: (_, records) => {
|
|
|
if (!records?.componentInfo) {
|
|
|
return null
|
|
|
}
|
|
|
- return <span style={{ fontSize: 12 }}>{AD_STATUS[value]}</span>
|
|
|
+ return <span style={{ fontSize: 12 }}>{AD_STATUS[records?.componentInfo?.reviewStatus]}</span>
|
|
|
}
|
|
|
},
|
|
|
{
|
|
@@ -286,6 +286,15 @@ export const tableConfigDetail = (): TableProps<any>['columns'] => {
|
|
|
</>
|
|
|
}
|
|
|
},
|
|
|
+ {
|
|
|
+ title: '元素审核结果',
|
|
|
+ dataIndex: 'reviewStatus',
|
|
|
+ key: 'reviewStatus',
|
|
|
+ width: 120,
|
|
|
+ render: (value) => {
|
|
|
+ return <span style={{ fontSize: 12 }}>{AD_STATUS[value]}</span>
|
|
|
+ }
|
|
|
+ },
|
|
|
{
|
|
|
title: '驳回原因',
|
|
|
dataIndex: 'elementRejectDetailInfo',
|