Skip to content

Commit

Permalink
数据源列表优化
Browse files Browse the repository at this point in the history
  • Loading branch information
weiye committed Mar 23, 2020
1 parent 7622195 commit d1e4881
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions src/views/datax/jdbc-datasource/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -40,18 +40,21 @@
<template slot-scope="scope">{{ scope.row.datasourceGroup }}
</template>
</el-table-column>
<el-table-column label="用户名" width="150" align="center">
<!--<el-table-column label="用户名" width="150" align="center">
<template slot-scope="scope">{{ scope.row.jdbcUsername ? scope.row.jdbcUsername:'-' }}</template>
</el-table-column>
</el-table-column>-->
<el-table-column label="jdbc url" width="200" align="center" :show-overflow-tooltip="true">
<template slot-scope="scope">{{ scope.row.jdbcUrl ? scope.row.jdbcUrl:'-' }}</template>
</el-table-column>
<el-table-column label="jdbc驱动类" width="200" align="center" :show-overflow-tooltip="true">
<!-- <el-table-column label="jdbc驱动类" width="200" align="center" :show-overflow-tooltip="true">
<template slot-scope="scope">{{ scope.row.jdbcDriverClass ? scope.row.jdbcDriverClass:'-' }}</template>
</el-table-column>
</el-table-column>-->
<el-table-column label="ZK地址" width="200" align="center" :show-overflow-tooltip="true">
<template slot-scope="scope">{{ scope.row.zkAdress ? scope.row.zkAdress:'-' }}</template>
</el-table-column>
<el-table-column label="数据库名" width="200" align="center" :show-overflow-tooltip="true">
<template slot-scope="scope">{{ scope.row.databaseName ? scope.row.databaseName:'-' }}</template>
</el-table-column>
<el-table-column label="注释" width="150" align="center">
<template slot-scope="scope">{{ scope.row.comments }}</template>
</el-table-column>
Expand Down

0 comments on commit d1e4881

Please sign in to comment.