49 lines
783 B
TypeScript
49 lines
783 B
TypeScript
import { h } from 'vue';
|
|
import { ElTag } from 'element-plus';
|
|
|
|
export const columns = [
|
|
{
|
|
type: 'selection',
|
|
},
|
|
{
|
|
label: '数据表名称',
|
|
prop: 'tableName',
|
|
minWidth: 150,
|
|
},
|
|
{
|
|
label: '数据表描述',
|
|
prop: 'tableComment',
|
|
minWidth: 150,
|
|
},
|
|
{
|
|
label: '数据表引擎',
|
|
prop: 'engine',
|
|
minWidth: 100,
|
|
},
|
|
{
|
|
label: '数据表行数',
|
|
prop: 'tableRows',
|
|
minWidth: 100,
|
|
},
|
|
{
|
|
label: '数据表长度',
|
|
prop: 'dataLength',
|
|
minWidth: 100,
|
|
},
|
|
{
|
|
label: '数据表自增索引',
|
|
prop: 'autoIncrement',
|
|
minWidth: 150,
|
|
},
|
|
{
|
|
label: '数据表编码',
|
|
prop: 'tableCollation',
|
|
minWidth: 150,
|
|
},
|
|
{
|
|
label: '创建时间',
|
|
prop: 'createTime',
|
|
width: 180,
|
|
},
|
|
];
|