优化多数据源模块
This commit is contained in:
parent
da777e082f
commit
77abbe14dd
@ -7,7 +7,8 @@ export const columns = [
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'ID',
|
label: 'ID',
|
||||||
prop: 'id'
|
prop: 'id',
|
||||||
|
width: 100,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: '数据源名称',
|
label: '数据源名称',
|
||||||
@ -45,11 +46,32 @@ export const columns = [
|
|||||||
prop: 'code',
|
prop: 'code',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: '数据库名称',
|
label: '数据库驱动类',
|
||||||
prop: 'dbName',
|
prop: 'dbDriver',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: '数据源地址',
|
label: '数据源地址',
|
||||||
prop: 'dbUrl',
|
prop: 'dbUrl',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
label: '数据库名称',
|
||||||
|
prop: 'dbName',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: '数据库用户名',
|
||||||
|
prop: 'dbUsername',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: '备注',
|
||||||
|
prop: 'note',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: '创建人',
|
||||||
|
prop: 'createUser',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: '创建时间',
|
||||||
|
prop: 'createTime',
|
||||||
|
width: 180,
|
||||||
|
},
|
||||||
];
|
];
|
||||||
|
@ -65,7 +65,7 @@ const selectionData = ref([])
|
|||||||
dbType:''
|
dbType:''
|
||||||
});
|
});
|
||||||
const actionColumn = reactive({
|
const actionColumn = reactive({
|
||||||
width: 250,
|
width: 200,
|
||||||
label: '操作',
|
label: '操作',
|
||||||
prop: 'action',
|
prop: 'action',
|
||||||
fixed: 'right',
|
fixed: 'right',
|
||||||
|
Loading…
Reference in New Issue
Block a user