YaolongHan преди 4 години
родител
ревизия
baf01ba300
променени са 2 файла, в които са добавени 149 реда и са изтрити 13 реда
  1. 23 13
      src/components/editview/baseTopoEditer.vue
  2. 126 0
      src/components/editview/topToolBar.vue

+ 23 - 13
src/components/editview/baseTopoEditer.vue

@@ -48,7 +48,7 @@ const imgServeUpload = window.__systemConf.imgServeUpload;
 // 默认通用图标
 const default_Eq = window.__systemConf.default_Eq;
 // 联通方式图标
-const uninType = window.__systemConf.uninType
+const uninType = window.__systemConf.uninType;
 export default {
   components: { topoTooltip },
   data() {
@@ -61,7 +61,7 @@ export default {
       showTooltip: false, //是否显示tooltip
       topoContent: {}, // 读图后存储图所有数据
       autoSave: null, // 自动保存定时器
-      isLock:false //右键item是否锁定
+      isLock: false, //右键item是否锁定
     };
   },
   computed: {
@@ -81,7 +81,7 @@ export default {
     this.canvasHeight = this.$refs.baseTopo.offsetHeight - 10;
     this.scene = new PTopoScene();
     this.scene.imgServeUrl = imgBaseUrl; //获取图服务路径
-    this.scene.uninType = uninType //联通方式
+    this.scene.uninType = uninType; //联通方式
     this.view = new PTopoView("persagy_topo");
     this.view.scene = this.scene;
     this.scene.clearCmdStatus = this.clearCmdStatus;
@@ -113,7 +113,7 @@ export default {
       "ADDEQUIPITEM",
       "EDITEQUIPITEM",
       "SETVERSION",
-      'SETVBACKGROUND'
+      "SETVBACKGROUND",
     ]),
     // 恢复命令状态
     clearCmdStatus() {
@@ -124,10 +124,10 @@ export default {
     onContextMenu(item, [event]) {
       this.showTooltip = true;
       if (item) {
-        if(item.moveable){
-          this.isLock = false
-        }else{
-          this.isLock = true
+        if (item.moveable) {
+          this.isLock = false;
+        } else {
+          this.isLock = true;
         }
         this.havItem = true;
       } else {
@@ -228,6 +228,11 @@ export default {
       bus.$on("chioceItem", (item) => {
         this.scene.toggleItem(item);
       });
+      // 更改对齐方式
+      bus.$off("changeAlignItem");
+      bus.$on("changeAlignItem", (val) => {
+        this.scene.changeAlignItem(val);
+      });
       // 更改背景色
       bus.$off("changeBackgroundColor");
       bus.$on("changeBackgroundColor", (val) => {
@@ -258,11 +263,13 @@ export default {
       this.SETCATEGROY(res.content);
       this.topoContent = res.content;
       const parse = new PTopoParser();
-      if(this.scene){
-        const backgroundColor = res.content.viewBackground ? res.content.viewBackground : '#00000000'
+      if (this.scene) {
+        const backgroundColor = res.content.viewBackground
+          ? res.content.viewBackground
+          : "#00000000";
         this.scene.changeBackgroundColor(backgroundColor);
         // 初始化保存图背景色
-        this.SETVBACKGROUND(this.view.backgroundColor.toRgba())
+        this.SETVBACKGROUND(this.view.backgroundColor.toRgba());
       }
       parse.parseData(res.content.elements);
       parse.markers.forEach((item) => {
@@ -271,7 +278,10 @@ export default {
         item.connect("finishCreated", this.scene, this.scene.finishCreated);
         item.connect("onContextMenu", this, this.scene.getItem);
         // 判断如果是图//或是管道,需要拼接路径
-        if (item.data.properties.type == "BaseImage" || item.data.properties.type == "BasePipeUninTool") {
+        if (
+          item.data.properties.type == "BaseImage" ||
+          item.data.properties.type == "BasePipeUninTool"
+        ) {
           if (item.data.style.default.url) {
             item.url = imgBaseUrl + item.data.style.default.url;
           }
@@ -392,7 +402,7 @@ export default {
         graphId: this.graphId,
         id: this.id,
         version: this.version,
-        viewBackground:this.view.backgroundColor.value //视图背景色
+        viewBackground: this.view.backgroundColor.value, //视图背景色
       };
       return new Promise((resolve, reject) => {
         saveGroup(obj).then((res) => {

+ 126 - 0
src/components/editview/topToolBar.vue

@@ -92,6 +92,34 @@
             <span class="icon iconfont icon-zhidi"></span>
           </el-tooltip>
         </li>
+        <!-- 对齐相关操作 -->
+        <el-divider direction="vertical"></el-divider>
+        <el-dropdown
+          trigger="click"
+          @command="changeAlignItem"
+          placement="top-start"
+        >
+          <span class="el-dropdown-link">
+            <i class="icon iconfont icon-zuoduiqi"></i>
+            <i class="el-icon-arrow-down el-icon--right"></i>
+          </span>
+          <el-dropdown-menu slot="dropdown" class="top-dropdown">
+            <el-dropdown-item
+              v-for="item in alignmentOptions"
+              :key="item.value"
+              :command="item.value"
+              :disabled="item.disabled"
+            >
+              <img
+                :src="require(`@/assets/images/` + item.img + `.png`)"
+                alt=""
+              />
+              <span>{{ item.label }}</span>
+            </el-dropdown-item>
+          </el-dropdown-menu>
+        </el-dropdown>
+        <el-divider direction="vertical"></el-divider>
+
         <li @click="setLock()">
           <el-tooltip
             class="item"
@@ -113,11 +141,63 @@
 </template>
 <script>
 import bus from "@/bus/bus";
+import { SGraphLayoutType } from "@persagy-web/graph/lib";
 export default {
   data() {
     return {
       isLock: false,
       itemList: null,
+      alignmentOptions: [
+        //对齐数据
+        {
+          value: SGraphLayoutType.Left,
+          label: "左对齐",
+          img: "t-left",
+          disabled: true,
+        },
+        {
+          value: SGraphLayoutType.Right,
+          label: "右对齐",
+          img: "t-right",
+          disabled: true,
+        },
+        {
+          value: SGraphLayoutType.Top,
+          label: "顶对齐",
+          img: "t-top",
+          disabled: true,
+        },
+        {
+          value: SGraphLayoutType.Bottom,
+          label: "底对齐",
+          img: "t-bottom",
+          disabled: true,
+        },
+        {
+          value: SGraphLayoutType.Center,
+          label: "水平居中对齐",
+          img: "t-center",
+          disabled: true,
+        },
+        {
+          value: SGraphLayoutType.Middle,
+          label: "垂直居中对齐",
+          img: "t-topandbottm",
+          disabled: true,
+        },
+        {
+          value: SGraphLayoutType.Vertical,
+          label: "垂直分布",
+          img: "t-vertical",
+          disabled: true,
+        },
+        {
+          value: SGraphLayoutType.Horizontal,
+          label: "水平分布",
+          img: "t-level",
+          disabled: true,
+        },
+      ],
     };
   },
   methods: {
@@ -160,6 +240,28 @@ export default {
         this.isLock = itemList[0].moveable;
         this.itemList = itemList;
       }
+      // 处理对齐方式
+      this.handleAlign(itemList);
+    },
+    /**
+     * 修改对齐方式
+     * @param  val 选中的对齐方式类型
+     */
+    changeAlignItem(val) {
+      bus.$emit("changeAlignItem", val);
+    },
+
+    /**
+     * 处理对齐方式
+     * @param itemList 选中的元素数组
+     */
+    handleAlign(itemList) {
+      // 选中两个以上元素时,对齐方式解开禁用
+      if (itemList?.length > 1) {
+        this.alignmentOptions.map((v) => (v.disabled = false));
+      } else {
+        this.alignmentOptions.map((v) => (v.disabled = true));
+      }
     },
   },
   mounted() {
@@ -226,4 +328,28 @@ li {
     }
   }
 }
+// 对齐方式下拉按钮菜单
+.top-dropdown {
+  li {
+    padding-left: 12px !important;
+    width: 150px;
+    height: 30px;
+    box-sizing: border-box;
+    display: flex;
+    align-items: center;
+    img {
+      width: 16px;
+      margin-right: 5px;
+      vertical-align: middle;
+    }
+    span {
+      font-weight: 400;
+      font-size: 14px;
+    }
+  }
+  .el-dropdown-menu__item.is-disabled {
+    pointer-events: initial;
+    cursor: not-allowed;
+  }
+}
 </style>