Browse Source

管头zorder高于管道

YaolongHan 4 năm trước cách đây
mục cha
commit
cdd955765d

BIN
src/assets/images/detection.png


BIN
src/assets/images/leftImgs/pen.png


+ 2 - 2
src/components/editClass/persagy-edit/PTopoParser.ts

@@ -131,7 +131,7 @@ export class PTopoParser extends SParser {
             }
         }
         if (node) {
-            node.zOrder = ItemOrder.imageOrder;
+            // node.zOrder = ItemOrder.imageOrder;
             this.nodes.push(node);
         }
 
@@ -154,7 +154,7 @@ export class PTopoParser extends SParser {
         }
 
         if (relation) {
-            relation.zOrder = ItemOrder.polylineOrder;
+            // relation.zOrder = ItemOrder.polylineOrder;
             this.relations.push(relation);
         }
 

+ 3 - 1
src/components/editClass/persagy-edit/PTopoScene.ts

@@ -33,6 +33,7 @@ import { rgbaNum } from "@persagy-web/big-edit/lib/until";
 import { SGraphAddCommand } from "@persagy-web/edit/lib/commands/SGraphAddCommand"
 import { SColor, SFont, SArrowStyleType } from '@persagy-web/draw/lib';
 import { PTopoParser, SBasePipeUninTool, SBaseEquation, SBaseInfoPoint } from "./"
+import { ItemOrder } from '@persagy-web/big/lib';
 
 /**
  * 拓扑图场景类
@@ -211,7 +212,8 @@ export class PTopoScene extends SBaseEditScene {
                 uninToolType: cmd,  //分别分二头连接器、三头连接器、四头连接器
                 default: {
                     strokecolor: "#c0ccda",
-                    url: this.uninType[cmd]
+                    url: this.uninType[cmd],
+                    zorder:ItemOrder.markOrder
                 }
             }
         };

+ 12 - 0
src/components/editClass/persagy-edit/PTopoView.ts

@@ -25,6 +25,7 @@
 
 import { SColor, SPainter } from '@persagy-web/draw/lib';
 import { SGraphView } from '@persagy-web/graph/lib';
+import { SMouseEvent } from "@persagy-web/base/";
 
 /**
  * 拓扑图view
@@ -32,6 +33,17 @@ import { SGraphView } from '@persagy-web/graph/lib';
  * @author  韩耀龙 <han_yao_long@163.com>
  */
 export class PTopoView extends SGraphView {
+
+	originCursor = ""
+
+	/** 鼠标样式 */
+	set cursor(v: string) {
+		if (!this.originCursor) {
+			this.canvasView.style.cursor = v;
+			return
+		}
+		this.canvasView.style.cursor = this.originCursor
+	}
 	/**
 	 * 绘制场景背景
 	 *

+ 11 - 0
src/components/editview/baseTopoEditer.vue

@@ -520,12 +520,23 @@ export default {
         }
       });
     },
+    // //改变图标样式
+    changeCursor(val) {
+      if (val) {
+        if (val == "EditBaseLine" || val == "EditBaseLine") {
+          // this.view.originCursor = "xxx";
+        }
+      } else {
+        this.view.originCursor = "";
+      }
+    },
   },
   watch: {
     editCmd(val) {
       if (this.scene) {
         // 设置当前编辑状态
         this.scene.editCmd = val;
+        this.changeCursor(val);
       }
     },
     legendObj: {

+ 31 - 7
src/components/editview/leftToolBar.vue

@@ -9,12 +9,6 @@
           :class="{ 'btn-active': chiceStatus == index }"
           @click="openTool(index)"
         >
-          <!-- <img
-            width="20px"
-            height="20px"
-            :src="chiceStatus == index ? item.activeIcon : item.icon"
-            alt
-          /> -->
           <span :class="['icon', 'iconfont', 'fontstyle', item.icon]"></span>
           <span>{{ item.name }}</span>
           <div class="btborder"></div>
@@ -32,10 +26,12 @@
       :show-close="true"
       :before-close="handleClose"
       :wrapperClosable="false"
-      custom-class="drawer-box"
     >
       <legendList :chiceStatus="chiceStatus"></legendList>
     </el-drawer>
+    <div class="close-lengend" v-show="drawer" @click="closeDraw">
+      <i class="el-icon-arrow-left"></i>
+    </div>
   </div>
 </template>
 <script>
@@ -110,6 +106,11 @@ export default {
       this.drawer = false;
       this.SETCHOICELEHEND("");
     },
+    // 关闭测弹窗
+    closeDraw(){
+      this.drawer = !this.drawer
+       this.chiceStatus = -1
+    }
   },
 };
 </script>
@@ -166,6 +167,29 @@ li {
       }
     }
   }
+  .close-lengend {
+    width: 20px;
+    height: 40px;
+    position: absolute;
+    right: -250px;
+    top: 50%;
+    transform: translateY(-50%);
+    z-index: 99999;
+    border-radius: 0px 5px 5px 0;
+    cursor: pointer;
+    font-size: 28px;
+    color: #e4e5e7;
+    overflow: hidden;
+    display: flex;
+    justify-content: center;
+    align-items: center;
+    border: 1px solid #e4e5e7;
+    background: #ffffff;
+    &:hover {
+      color: #0091ff;
+      border: 1px solid #0091ff;
+    }
+  }
 }
 .el-drawer__wrapper {
   left: 64px;

+ 1 - 14
src/components/editview/leftToolBar/legendList.vue

@@ -4,7 +4,7 @@
     <!-- 基础图例 -->
     <addBaseItem v-if="chiceStatus == 0"></addBaseItem>
     <!-- 设备类 -->
-     <!-- 管线类 -->
+    <!-- 管线类 -->
     <pipeList v-if="chiceStatus == 1"></pipeList>
 
     <equipmentList
@@ -12,14 +12,11 @@
       @openAddEqupModle="showAddItemModel = true"
     ></equipmentList>
 
-
     <!-- 新增实例对象 -->
     <addItemModel
       @closeModel="showAddItemModel = false"
       :showAddItemModel="showAddItemModel"
     ></addItemModel>
-
-    <div class="close-lengend"></div>
   </div>
 </template>
 <script>
@@ -43,15 +40,5 @@ export default {
   width: 100%;
   height: 100%;
   position: relative;
-  .close-lengend{
-    width: 20px;
-    height: 40px;
-    position: absolute;
-    right: -20px;
-    top: 50%;
-    transform: translateY(-50%);
-    background: red;
-    z-index: 999;
-  }
 }
 </style>

+ 34 - 2
src/components/editview/topToolBar.vue

@@ -134,8 +134,15 @@
         </li>
       </ul>
     </div>
-    <div class="rght">
-      <!-- 待定 -->
+    <div class="right">
+      <img src="./../../assets/images/detection.png" alt="" />
+      <span>关系</span>
+      <!-- 下拉框卡片 -->
+      <!-- <el-card class="box-card">
+        <div v-for="o in 4" :key="o" class="text item">
+          {{ "列表内容 " + o }}
+        </div>
+      </el-card> -->
     </div>
   </div>
 </template>
@@ -287,6 +294,7 @@ li {
   justify-content: center;
   padding: 0 24px 0 24px;
   box-sizing: border-box;
+  position: relative;
   border-bottom: 1px solid #e4e5e7;
   .left {
     ul {
@@ -327,6 +335,30 @@ li {
       }
     }
   }
+  .right {
+    position: absolute;
+    right: 24px;
+    top: 50%;
+    transform: translateY(-50%);
+    width: 24px;
+    cursor: pointer;
+    font-size: 12px;
+    color: #8d9399;
+    z-index: 99999;
+    .box-card{
+      width: 240px;
+      max-height: 500px;
+      position: absolute;
+      right: 0;
+      top: 40px;
+      background: #ffffff;
+      z-index: 999;
+    }
+    img {
+      width: 20px;
+      height: 20px;
+    }
+  }
 }
 // 对齐方式下拉按钮菜单
 .top-dropdown {