YaolongHan 4 years ago
parent
commit
316b34ef36

+ 27 - 26
src/components/editview/baseTopoEditer.vue

@@ -293,33 +293,34 @@ export default {
       });
       parse.relations.forEach((t) => {
         // 设置锚点
-        if (t.anchor1Id) {
-          let startAnc = null;
-          anchorList.forEach((aItem) => {
-            if (aItem.id == t.anchor1Id) {
-              startAnc = aItem;
-            }
-          });
+        // (此处为吸附功能、需要要求注掉)
+        // if (t.anchor1Id) {
+        //   let startAnc = null;
+        //   anchorList.forEach((aItem) => {
+        //     if (aItem.id == t.anchor1Id) {
+        //       startAnc = aItem;
+        //     }
+        //   });
 
-          if (startAnc) {
-            startAnc.isConnected = true;
-            startAnc.parent?.connect("changePos", t, t.changePos);
-            t.startAnchor = startAnc || null;
-          }
-        }
-        if (t.anchor2Id) {
-          let endAnc = null;
-          anchorList.forEach((aItem) => {
-            if (aItem.id == t.anchor2Id) {
-              endAnc = aItem;
-            }
-          });
-          if (endAnc) {
-            endAnc.isConnected = true;
-            endAnc.parent?.connect("changePos", t, t.changePos);
-            t.endAnchor = endAnc || null;
-          }
-        }
+        //   if (startAnc) {
+        //     startAnc.isConnected = true;
+        //     startAnc.parent?.connect("changePos", t, t.changePos);
+        //     t.startAnchor = startAnc || null;
+        //   }
+        // }
+        // if (t.anchor2Id) {
+        //   let endAnc = null;
+        //   anchorList.forEach((aItem) => {
+        //     if (aItem.id == t.anchor2Id) {
+        //       endAnc = aItem;
+        //     }
+        //   });
+        //   if (endAnc) {
+        //     endAnc.isConnected = true;
+        //     endAnc.parent?.connect("changePos", t, t.changePos);
+        //     t.endAnchor = endAnc || null;
+        //   }
+        // }
         t.connect("finishCreated", this.scene, this.scene.finishCreated);
         t.connect("onContextMenu", this, this.scene.getItem);
         this.scene.addItem(t);

+ 189 - 0
src/components/editview/rightPropertyBar/BasePipe.vue

@@ -0,0 +1,189 @@
+<!--基础管道属性-->
+<template>
+  <div class="base-pipe">
+    <div class="title">属性</div>
+    <ul>
+      <li>
+        <div class="small-title">边框</div>
+        <div class="property">
+          <div class="color-box">
+            <div class="cololorSelect">
+              <el-color-picker
+                show-alpha
+                @change="changeColor"
+                class="fix-box-1"
+                v-model="color"
+              ></el-color-picker>
+            </div>
+            <span>颜色</span>
+          </div>
+          <div class="line-width">
+            <el-input-number
+              style="width: 80px"
+              v-model="linewidth"
+              controls-position="right"
+              @change="changeWidth"
+              size="mini"
+              :min="1"
+              :max="20"
+              :maxlength="100"
+            ></el-input-number>
+            <span>线宽</span>
+          </div>
+          <div class="line-width">
+            <a-select
+              style="width: 80px"
+              v-model="linestyle"
+              :default-value="borderLineOption[0].id"
+              @change="changeLineStyle"
+            >
+              <a-select-option
+                v-for="item in borderLineOption"
+                :key="item.id"
+                :label="item.src"
+                :value="item.id"
+              >
+                <img :src="item.src" alt width="60" />
+              </a-select-option>
+            </a-select>
+            <span>线型</span>
+          </div>
+        </div>
+      </li>
+    </ul>
+  </div>
+</template>
+<script>
+import bus from "@/bus/bus";
+export default {
+  props: ["strokeColor", "lineStyle", "lineWidth"],
+  data() {
+    return {
+      color: "",
+      linewidth: "",
+      linestyle: "",
+      borderLineOption: [
+        {
+          id: "Solid",
+          src: require("@/assets/images/solidLine.png"),
+        },
+        {
+          id: "Dashed",
+          src: require("@/assets/images/dashedLine.png"),
+        },
+        {},
+      ],
+    };
+  },
+  methods: {
+    // 改变线宽
+    changeWidth(val) {
+      bus.$emit("updateStyle", "lineWidth", val);
+    },
+    // 改变颜色
+    changeColor(val) {
+      bus.$emit("updateStyle", "strokeColor", val);
+    },
+    // 改变线样式
+    changeLineStyle(val) {
+      bus.$emit("updateStyle", "lineStyle", val);
+    },
+    // 改变箭头样式
+    changeArrowType(dir) {
+      bus.$emit("updateStyle", dir, this[dir]);
+    },
+  },
+  watch: {
+    strokeColor(val) {
+      this.color = val;
+    },
+    lineWidth(val) {
+      this.linewidth = val;
+    },
+    lineStyle(val) {
+      this.linestyle = val;
+    },
+  },
+};
+</script>
+<style lang="less" scoped>
+ul,
+li {
+  margin: 0;
+  padding: 0;
+  list-style-type: none;
+}
+.base-pipe {
+  .title {
+    height: 47px;
+    // border-bottom: 1px solid #979797;
+    color: #646c73;
+    font-size: 16px;
+    padding-left: 12px;
+    box-sizing: border-box;
+  }
+  ul {
+    width: calc(~"100% - 24px");
+    margin: -1px 12px 0 12px;
+    li {
+      // border-top: 1px solid #979797;
+      .small-title {
+        font-size: 12px;
+        color: #8d9399;
+        margin: 12px 0;
+      }
+      .property {
+        display: flex;
+        align-items: center;
+        justify-content: space-around;
+        .color-box {
+          display: flex;
+          align-items: center;
+          flex-direction: column;
+          .cololorSelect {
+            width: 32px;
+            height: 20px;
+            overflow: hidden;
+            position: relative;
+            margin: 4px 0;
+            .fix-box-1 {
+              margin-top: -8px;
+              margin-left: -8px;
+              /deep/ .el-color-picker__trigger {
+                width: 200px;
+                height: 200px;
+              }
+            }
+          }
+        }
+        .line-width {
+          display: flex;
+          align-items: center;
+          flex-direction: column;
+          margin-left: 8px;
+          position: relative;
+        }
+        .line-style {
+          width: 100%;
+          display: flex;
+          align-items: center;
+          justify-content: flex-start;
+          position: relative;
+          margin-top: 4px;
+          .nametype {
+            position: absolute;
+            left: 50%;
+            bottom: -80%;
+            transform: translateX(-140%);
+          }
+        }
+        span {
+          font-size: 12px;
+          color: #1f2429;
+          margin-top: 4px;
+        }
+      }
+    }
+  }
+}
+</style>

+ 24 - 11
src/components/editview/rightPropertyBar/property.vue

@@ -16,6 +16,13 @@
       :Begin="begin"
       :End="end"
     ></baseLinePro>
+    <BasePipe
+      v-show="itemType == 'BasePipe'"
+      :strokeColor="strokeColor"
+      :lineStyle="lineStyle"
+      :lineWidth="lineWidth"
+    ></BasePipe>
+
     <BaseGraphy
       :lineStyle="lineStyle"
       :lineWidth="lineWidth"
@@ -59,8 +66,7 @@
       :backgroundColor="backgroundColor"
       @changeEquipMsgData="changeEquipMsg"
     ></BaseEquipmentMsg>
-    <graphPaper  v-show="!itemType">
-    </graphPaper>
+    <graphPaper v-show="!itemType"> </graphPaper>
   </div>
 </template>
 <script>
@@ -70,7 +76,8 @@ import BaseGraphy from "./BaseGraphy";
 import BaseImagePro from "./BaseImagePro";
 import BaseEquipment from "./BaseEquipment";
 import BaseEquipmentMsg from "./BaseEquipmentMsg";
-import graphPaper from "./graphPaper"
+import BasePipe from "./BasePipe";
+import graphPaper from "./graphPaper";
 import bus from "@/bus/bus";
 const lineStyle = {
   0: "Solid",
@@ -98,7 +105,8 @@ export default {
     BaseImagePro,
     BaseEquipment,
     BaseEquipmentMsg,
-    graphPaper
+    graphPaper,
+    BasePipe,
   },
   data() {
     return {
@@ -206,14 +214,19 @@ export default {
         // 获取信息点详情信息
         this.EquipMsgData = item.curTextItem.propertyData;
         this.EquipMsgItem = item.curTextItem;
-        this.strokeColor = '';
-        this.backgroundColor = '';
+        this.strokeColor = "";
+        this.backgroundColor = "";
         this.fontSize = 1;
-        setTimeout(()=>{
-        this.strokeColor = this.EquipMsgItem.color.toRgba();
-        this.backgroundColor = this.EquipMsgItem.backgroundColor.toRgba();
-        this.fontSize = this.EquipMsgItem.font.size;
-        })
+        setTimeout(() => {
+          this.strokeColor = this.EquipMsgItem.color.toRgba();
+          this.backgroundColor = this.EquipMsgItem.backgroundColor.toRgba();
+          this.fontSize = this.EquipMsgItem.font.size;
+        });
+      } else if (this.itemType == "BasePipe") {
+        // 管道
+        this.strokeColor = item.strokeColor.toRgba();
+        this.lineStyle = lineStyle[item.lineStyle];
+        this.lineWidth = item.lineWidth;
       }
     },
     // 修改设备信息点数据

+ 68 - 26
src/views/home.vue

@@ -311,19 +311,57 @@ export default {
     },
     // 新建拓扑图成功
     toEdit(data) {
-      // 如果跳入草稿则直接跳入
-      // 打开新窗口
-      let routeUrl = this.$router.resolve({
-        name: "Editer",
-        query: {
-          graphId: data.graphId,
-          id: data.id,
-          categoryName: encodeURI(this.categoryName),
-          isPub: this.isPub,
-          projectId: this.projectId,
-        },
-      });
-      window.open(routeUrl.href, "_blank");
+      // 如果跳入草稿则直接跳入、如果调已发布图判断是否是有草稿、有则提示是否要跳入草稿
+      if (this.isPub) {
+        this.getDraft(data).then((res) => {
+          // 是否有对应草稿 如果有出弹窗
+          if (res) {
+            this.$confirm("该图片已存在最新版草稿,是否选择编辑已有草稿", {
+              confirmButtonText: "确定",
+              cancelButtonText: "取消",
+            })
+              .then(() => {
+                let routeUrl = this.$router.resolve({
+                  name: "Editer",
+                  query: {
+                    graphId: res.graphId,
+                    id: res.id,
+                    categoryName: encodeURI(this.categoryName),
+                    isPub: 0,
+                    projectId: this.projectId,
+                  },
+                });
+                window.open(routeUrl.href, "_blank");
+              })
+              .catch(() => {});
+          } else {
+            let routeUrl = this.$router.resolve({
+              name: "Editer",
+              query: {
+                graphId: data.graphId,
+                id: data.id,
+                categoryName: encodeURI(this.categoryName),
+                isPub: this.isPub,
+                projectId: this.projectId,
+              },
+            });
+            window.open(routeUrl.href, "_blank");
+          }
+        });
+      } else {
+        // 进入草稿
+        let routeUrl = this.$router.resolve({
+          name: "Editer",
+          query: {
+            graphId: data.graphId,
+            id: data.id,
+            categoryName: encodeURI(this.categoryName),
+            isPub: this.isPub,
+            projectId: this.projectId,
+          },
+        });
+        window.open(routeUrl.href, "_blank");
+      }
     },
     /////////////////接口
     // 查询图形信息
@@ -359,12 +397,11 @@ export default {
         });
       }
     },
-    // 查询所有草稿图
-    getAllDraft() {
+    // 查询是否存在对应的得草稿图
+    getDraft(data) {
       if (!this.curCategory.code) {
         return;
       }
-      this.selectCard = [];
       const pa = {
         filters: `categoryId="${this.curCategory.code}"`,
         orders: `${this.selVal} desc`,
@@ -372,17 +409,22 @@ export default {
       if (this.queryText) {
         pa.filters += `;name contain ""`;
       }
-      if (this.isPub) {
-        queryPubGraph(pa).then((res) => {
-          this.cardList = res.content.map((t) => {
-            t.checked = false;
-            return t;
+      pa.filters += ";state=1";
+      pa.filters += `;id='${data.id}';graphId='${data.graphId}'`;
+      const cardList = [];
+      return new Promise((resolve, reject) => {
+        queryDraftsGraph(pa)
+          .then((res) => {
+            if (res.content.length) {
+              resolve(res.content[0]);
+            } else {
+              resolve(false);
+            }
+          })
+          .catch((err) => {
+            reject(err);
           });
-          this.cardLoading = false;
-        });
-      } else {
-
-      }
+      });
     },
   },
   components: {