Browse Source

显示设备名称

YaolongHan 4 years ago
parent
commit
439b476a09
1 changed files with 5 additions and 2 deletions
  1. 5 2
      src/components/editview/rightPropertyBar/BaseEquipment.vue

+ 5 - 2
src/components/editview/rightPropertyBar/BaseEquipment.vue

@@ -1,6 +1,6 @@
 <template>
   <div id="equip_pro">
-    <div class="title">设备实例本地名称</div>
+    <div class="title">{{localName}}</div>
     <el-tabs v-model="activeName" @tab-click="handleClick">
       <el-tab-pane label="属性" name="first">
         <div class="property">
@@ -146,6 +146,7 @@ export default {
       pressMsgData: [], // 搜索后得信息点数组
       getPressMsg: "", //输入信息
       local: "", //局部加载
+      localName:'', //设备本地名称
       anotherMsg: "", // 附加信息
     };
   },
@@ -287,8 +288,8 @@ export default {
       this.msgData = []; //存储二级树
       this.pressMsgData = []; // 搜索后得信息点数组
       this.getPressMsg = ""; //输入信息
+      this.localName = val.properties.localName;
       // 启动局部 loading
-
       this.local = this.$loading({
         el: this.$refs.localDom,
         type: "local",
@@ -416,6 +417,8 @@ p {
     font-size: 16px;
     padding-left: 12px;
     box-sizing: border-box;
+    line-height: 47px;
+    font-weight: bold;
   }
   .property {
     .base-property {