wms-antdvue/src/views/data/dict/columns.ts
2024-12-18 15:21:11 +08:00

28 lines
395 B
TypeScript

import { h } from 'vue';
export const columns = [
{
title: 'ID',
dataIndex: 'id',
fixed: 'left',
width: 50,
},
{
title: '字典名称',
dataIndex: 'name',
width: 100,
},
{
title: '字典编码',
dataIndex: 'code',
width: 200,
},
{
title: '操作',
fixed: 'right',
dataIndex: 'action',
key: 'action',
width: 200,
},
];