This commit is contained in:
zoujiandong 2024-11-01 13:51:37 +08:00
parent 933936bfa0
commit d0eaf84481

View File

@ -65,6 +65,15 @@
:src="record.article_science_source.source_image"
/>
</template>
<template #article_image="{record}">
<a-image
width="50"
height="50"
fit="cover"
:src="record.article_image"
/>
</template>
<template #article_science_class="{record}">
@ -161,7 +170,8 @@
{ title: '标题', dataIndex: 'article_title',width:200 },
{ title: '文章分类', dataIndex: 'article_science_class',slotName: 'article_science_class',width:100 },
{ title: '文章来源', dataIndex: 'source_name', slotName: 'source_name',width: 120 },
{ title: '文章图片', dataIndex: 'source_image',slotName: 'source_image',width:120 },
{ title: '文章来源图片', dataIndex: 'source_image',slotName: 'source_image',width:120 },
{ title: '文章图片', dataIndex: 'article_image',slotName: 'article_image',width:120 },
{ title: '状态', dataIndex: 'article_status',slotName: 'article_status',width:80 },
{ title: '是否置顶', dataIndex: 'is_top',slotName: 'is_top',width:100 },
{ title: '创建时间', dataIndex: 'created_at',slotName: 'created_at',width:200 },