|
|
@@ -61,17 +61,21 @@
|
|
|
<div class="cyList">
|
|
|
<div style="color: #02a7f0">{{ i + 1 }}. {{ item.fxmc }}</div>
|
|
|
<div class="icon_list" v-show="item.hasDetail">
|
|
|
- <el-icon color="#02A7F0"
|
|
|
+ <el-icon color="#02A7F0" title="空间浏览"
|
|
|
><View style="width: 1.2rem; height: 1.2rem"
|
|
|
/></el-icon>
|
|
|
- <el-icon color="#02A7F0" @click="handleTransfer(item, i)"
|
|
|
+ <el-icon
|
|
|
+ title="属性表"
|
|
|
+ color="#02A7F0"
|
|
|
+ @click="handleTransfer(item, i)"
|
|
|
><Operation style="width: 1.2rem; height: 1.2rem"
|
|
|
/></el-icon>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div class="wenzi max-width column box-sizing">
|
|
|
- {{ item.remark }}
|
|
|
- </div>
|
|
|
+ <div
|
|
|
+ class="wenzi max-width column box-sizing"
|
|
|
+ v-html="item.remark"
|
|
|
+ ></div>
|
|
|
<el-table
|
|
|
:data="item.statics"
|
|
|
border
|
|
|
@@ -358,7 +362,7 @@ export default {
|
|
|
}
|
|
|
.cyList {
|
|
|
width: 100%;
|
|
|
- height: 24px;
|
|
|
+ height: 40px;
|
|
|
display: flex;
|
|
|
justify-content: space-between;
|
|
|
align-items: center;
|
|
|
@@ -369,6 +373,7 @@ export default {
|
|
|
justify-content: space-around;
|
|
|
i,
|
|
|
span {
|
|
|
+ cursor: pointer;
|
|
|
display: inline-block;
|
|
|
width: 24px;
|
|
|
height: 24px;
|