YaolongHan 4 gadi atpakaļ
vecāks
revīzija
c8781d197b

+ 5 - 5
src/components/editview/leftToolBar.vue

@@ -46,6 +46,11 @@ const leftData = [
     icon: "icon-tongyong",
   },
   {
+    id: "guanxian",
+    name: "管线",
+    icon: "icon-guanxian",
+  },
+  {
     id: "equipment",
     name: "设备",
     icon: "icon-shebei",
@@ -56,11 +61,6 @@ const leftData = [
     icon: "icon-shebeizu",
   },
   {
-    id: "guanxian",
-    name: "管线",
-    icon: "icon-guanxian",
-  },
-  {
     id: "space",
     name: "空间",
     icon: "icon-kongjian",

+ 2 - 0
src/components/editview/leftToolBar/addItemModel.vue

@@ -294,6 +294,8 @@ export default {
     modalClose() {
       this.isShowModel = false;
       this.$emit("closeModel");
+      // 清空搜索框信息
+      this.queryText = ''
     },
     // 确认/提交
     finish() {

+ 5 - 3
src/components/editview/leftToolBar/legendList.vue

@@ -4,12 +4,14 @@
     <!-- 基础图例 -->
     <addBaseItem v-if="chiceStatus == 0"></addBaseItem>
     <!-- 设备类 -->
+     <!-- 管线类 -->
+    <pipeList v-if="chiceStatus == 1"></pipeList>
+
     <equipmentList
-      v-if="chiceStatus == 1"
+      v-if="chiceStatus == 2"
       @openAddEqupModle="showAddItemModel = true"
     ></equipmentList>
-    <!-- 管线类 -->
-    <pipeList v-if="chiceStatus == 3"></pipeList>
+
 
     <!-- 新增实例对象 -->
     <addItemModel

+ 1 - 1
src/components/editview/rightPropertyBar/baseLinePro.vue

@@ -83,7 +83,7 @@
                 {{ item.src }}
               </a-select-option>
             </a-select>
-            <span class="nametype">线型</span>
+            <span class="nametype">箭头样式</span>
           </div>
         </div>
       </li>

+ 2 - 2
src/components/editview/rightPropertyBar/property.vue

@@ -56,7 +56,7 @@
       :strokeColor="strokeColor"
       :fontSize="fontSize"
       :curTextItem="EquipMsgItem"
-      :backgroundColor="backgroundColor" 
+      :backgroundColor="backgroundColor"
       @changeEquipMsgData="changeEquipMsg"
     ></BaseEquipmentMsg>
     <graphPaper  v-show="!itemType">
@@ -166,7 +166,7 @@ export default {
         this.itemType == "BaseText" ||
         this.itemType == "BaseExplain"
       ) {
-        this.strokeColor = item.strokeColor.toRgba();
+        this.strokeColor = item.color.toRgba();
         this.backgroundColor = item.backgroundColor.toRgba();
         this.textMsg = item.text;
         this.fontSize = item.font.size;