|
@@ -75,12 +75,13 @@ export default {
|
|
|
this.isImage ? null : { prop: 'duration', label: '时长' },
|
|
this.isImage ? null : { prop: 'duration', label: '时长' },
|
|
|
{ prop: 'size', label: '文件大小' },
|
|
{ prop: 'size', label: '文件大小' },
|
|
|
{ prop: 'createTime', label: '上传时间' },
|
|
{ prop: 'createTime', label: '上传时间' },
|
|
|
|
|
+ this.active === `${State.REJECTED}` ? { prop: 'remark', label: '驳回原因' } : null,
|
|
|
{ prop: 'ai', label: 'AI审核', type: 'tag', width: 100 },
|
|
{ prop: 'ai', label: 'AI审核', type: 'tag', width: 100 },
|
|
|
{ type: 'invoke', align: 'center', width: 140, render: [
|
|
{ type: 'invoke', align: 'center', width: 140, render: [
|
|
|
{ label: '查看', on: this.onView },
|
|
{ label: '查看', on: this.onView },
|
|
|
canEdit ? { label: '提交', on: this.onSubmit } : null,
|
|
canEdit ? { label: '提交', on: this.onSubmit } : null,
|
|
|
{ label: '删除', render ({ del }) { return del }, on: this.onDel }
|
|
{ label: '删除', render ({ del }) { return del }, on: this.onDel }
|
|
|
- ].filter(val => val) }
|
|
|
|
|
|
|
+ ].filter(Boolean) }
|
|
|
]
|
|
]
|
|
|
}
|
|
}
|
|
|
},
|
|
},
|