wms-antdvue/.svn/pristine/3f/3f2f6d5149882bb41328acde6a9910a8fd56e208.svn-base
2024-11-07 16:33:03 +08:00

37 lines
594 B
Plaintext

import { h } from 'vue';
export const columns = [
{
title:'ID',
dataIndex: 'id',
fixed:'left',
width: 50,
},
{
title: '消息标题',
dataIndex: 'title',
},
{
title: '消息状态',
dataIndex: 'status',
customRender({ record }) {
return h('span', record.status === 1 ? '已读' : '未读')
},
},
{
title: '创建人',
dataIndex: 'createUser',
},
{
title: '创建时间',
dataIndex: 'createTime',
},
{
title: '操作',
fixed:'right',
dataIndex: 'action',
key: 'action',
width: 300,
},
];