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

53 lines
880 B
Plaintext

import { h } from 'vue';
import { ElTag } from 'element-plus';
export const columns = [
{
title: '数据表名称',
dataIndex: 'tableName',
width: 100,
},
{
title: '数据表描述',
dataIndex: 'tableComment',
width: 100,
},
{
title: '数据表引擎',
dataIndex: 'engine',
width: 100,
},
{
title: '数据表行数',
dataIndex: 'tableRows',
width: 100,
},
{
title: '数据表长度',
dataIndex: 'dataLength',
width: 100,
},
{
title: '数据表自增索引',
dataIndex: 'autoIncrement',
width: 100,
},
{
title: '数据表编码',
dataIndex: 'tableCollation',
width: 100,
},
{
title: '创建时间',
dataIndex: 'createTime',
width: 180,
},
{
title: '操作',
fixed: 'right',
dataIndex: 'action',
key: 'action',
width: 130,
},
];