wms-antdvue/.svn/pristine/d2/d2b722d6232ec6cf5320bf5dbde42fc5ffb8a921.svn-base
2024-11-07 16:33:03 +08:00

59 lines
1020 B
Plaintext

import { h } from 'vue';
import { Tag } from 'ant-design-vue';
export const columns2 = [
{
title:'ID',
dataIndex: 'id',
width:100
},
{
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,
}
];