wms-antdvue/.svn/pristine/57/571d416fc9c293eb0398ede6f69399ee07b9bc90.svn-base
2024-11-07 16:33:03 +08:00

41 lines
710 B
Plaintext

import { h } from 'vue';
export const columns = [
{
title:'ID',
dataIndex: 'id',
width:100,
fixed:'left'
},
{
title: '文章标题',
dataIndex: 'title',
customRender({ record }) {
return h('a', {
href: 'http://www.baidu.com',
target:"_blank"
},record.title);
},
width:300
},
{
title: '文章分类',
dataIndex: 'categoryName',
},
{
title: '文章状态',
dataIndex: 'status',
customRender({ record }) {
return h('span', record.status === 1 ? '下架' : '正常')
},
},
{
title: '创建人',
dataIndex: 'createUser',
},
{
title: '创建时间',
dataIndex: 'createTime',
},
];