|
@@ -99,15 +99,15 @@
|
|
|
<el-input size='small' @change='getTableList' prefix-icon='el-icon-search' v-model='keyword' style='width:192px;margin-right:12px;'></el-input>
|
|
|
</div>
|
|
|
<el-table :data='tableData' :key='key' :border='true' style='width: 100%'>
|
|
|
- <el-table-column prop='Name' label='图例名称'>
|
|
|
+ <el-table-column prop='Name' label='图例名称' width='120'>
|
|
|
<template slot-scope='{row}'>{{row.Name }}</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop='style' label='图例样式'>
|
|
|
+ <el-table-column prop='style' label='图例样式' width='150'>
|
|
|
<template slot-scope='{row}'>
|
|
|
<img class='img' :src='`/serve/topology-wanda/Picture/query/${row.Url}`' alt />
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop='Unit' label='单位'>
|
|
|
+ <el-table-column prop='Unit' label='单位' width='120'>
|
|
|
<template slot-scope='{row}'>{{row.Unit}}</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column prop='position' label='对应广场说明书的位置' show-overflow-tooltip>
|
|
@@ -116,12 +116,12 @@
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label='对应工程信息化' align='center'>
|
|
|
- <el-table-column prop='type' label='位置/设备分类' width='240' show-overflow-tooltip>
|
|
|
+ <el-table-column prop='type' label='位置/设备分类' show-overflow-tooltip>
|
|
|
<template slot-scope='{row}'>
|
|
|
<span v-for='item in row.InfoLocal ' :key='item.name'>{{item.name}}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop='system' label='专业' show-overflow-tooltip>
|
|
|
+ <el-table-column prop='system' label='专业' show-overflow-tooltip width='120'>
|
|
|
<template slot-scope='{row}'>
|
|
|
<span v-for='(item,index) in row.InfoSystems ' :key='index'>{{item.Name}}</span>
|
|
|
</template>
|