wms-antdvue/.svn/pristine/79/797b84357d5e310411e5a39d63992988a7c06425.svn-base
2024-11-07 16:33:03 +08:00

60 lines
1.0 KiB
Plaintext

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