| | |
| | | </el-col> |
| | | </el-row> |
| | | <!--表格及分页--> |
| | | <el-table v-loading="loading" :data="tableData"> |
| | | <el-table v-loading="loading" :data="tableData" class="table"> |
| | | <el-table-column |
| | | v-for="(item, key, index) of tableHeader" |
| | | :prop="key.toString()" |
| | |
| | | > |
| | | <template #default="scope"> |
| | | <div v-if="key === 'imageUrl'"> |
| | | <img :src="imgBaseUrl + scope.row.headImg" class="table-headImg" alt="" /> |
| | | <img :src="imgBaseUrl + scope.row.imageUrl" class="table-headImg" alt="" /> |
| | | </div> |
| | | <div v-else-if="key === 'pointType'"> |
| | | {{ scope.row.pointType === 1 ? '水温监测点' : '生态流量监测点' }} |
| | |
| | | flex-grow: 1; |
| | | } |
| | | } |
| | | .table{ |
| | | .table-headImg{ |
| | | height: 50px; |
| | | margin: 0 auto; |
| | | } |
| | | } |
| | | </style> |