|
@@ -9,12 +9,16 @@
|
|
|
</el-row>
|
|
|
<!-- 表格数据信息 -->
|
|
|
<el-table :data="tableData" stripe border header-row-class-name="headBackground">
|
|
|
- <el-table-column type="selection" width="55" align="left" />
|
|
|
+<!-- <el-table-column type="selection" width="55" align="left" />-->
|
|
|
<!-- <el-table-column type="index" label="序号" width="60" fixed align="center" /> -->
|
|
|
<el-table-column align="left" sortable label="数据源" prop="dataSourceName" />
|
|
|
<el-table-column align="left" sortable label="通讯协议" prop="dataSourceTypeName" />
|
|
|
<el-table-column align="left" sortable label="IP地址" prop="ipAddress" />
|
|
|
- <el-table-column align="left" sortable label="端口" prop="ipPort" />
|
|
|
+ <el-table-column align="left" sortable label="端口" prop="ipPort">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span style="margin-left: 10px">{{ scope.row.ipPort !="" ? scope.row.ipPort : "-"}}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>>
|
|
|
<el-table-column align="left" label="备注" sortable prop="dataSourceDescribe" width="180" /><el-table-column label="操作"
|
|
|
align="left" width="300">
|
|
|
<template slot-scope="scope">
|