71 lines
1.2 KiB
Plaintext
71 lines
1.2 KiB
Plaintext
import { h } from 'vue';
|
|
import { Tag } from 'ant-design-vue';
|
|
|
|
export const columns = [
|
|
{
|
|
title: 'ID',
|
|
dataIndex: 'id',
|
|
fixed: 'left',
|
|
width: 50,
|
|
},
|
|
{
|
|
title: '标题',
|
|
dataIndex: 'title',
|
|
width: 300,
|
|
},
|
|
{
|
|
title: '类型',
|
|
dataIndex: 'type',
|
|
width: 100,
|
|
customRender({ record }) {
|
|
return h(
|
|
Tag,
|
|
{
|
|
color: record.type == 1 ? 'processing' : 'success',
|
|
},
|
|
{
|
|
default: () => (record.type == 1 ? '通知' : '公告'),
|
|
},
|
|
);
|
|
},
|
|
},
|
|
{
|
|
title: '状态',
|
|
dataIndex: 'status',
|
|
width: 100,
|
|
customRender({ record }) {
|
|
return h(
|
|
Tag,
|
|
{
|
|
color: record.status == 1 ? 'success' : 'error',
|
|
},
|
|
{
|
|
default: () => (record.status == 1 ? '正常' : '禁用'),
|
|
},
|
|
);
|
|
},
|
|
},
|
|
{
|
|
title: '点击率',
|
|
dataIndex: 'clickNum',
|
|
width: 100,
|
|
},
|
|
{
|
|
title: '创建人',
|
|
dataIndex: 'createUser',
|
|
width: 100,
|
|
},
|
|
{
|
|
title: '创建时间',
|
|
dataIndex: 'createTime',
|
|
width: 180,
|
|
},
|
|
{
|
|
title: '操作',
|
|
width: 200,
|
|
fixed: 'right',
|
|
key: 'action',
|
|
dataIndex: 'action',
|
|
},
|
|
];
|