Browse Source

Merge branch 'dev' of git.sagacloud.cn:web/persagy-plan-editer into dev

zhangyu 4 năm trước cách đây
mục cha
commit
93b328d1e1

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

@@ -11,6 +11,7 @@
             @pressEnter="pressEnter"
             @clear="pressEnter"
         />
+        <!-- 无搜索时的通用组件 -->
         <div v-show="!baseItemList.length" class="lengend-item" v-for="(item, index) in baseEditItems" :key="index">
             <div class="legend-title" @click="collapse(item)">
                 <span>{{ item.title }}</span
@@ -41,6 +42,7 @@
                 </div>
             </el-collapse-transition>
         </div>
+        <!-- 搜索时的通用组件 -->
         <ul class="baseItems" v-show="baseItemList.length">
             <li
                 :class="{ 'btn-active': editCmd == baseItem.id }"

+ 1 - 0
src/components/editview/leftToolBar/addEquipmentDialog.vue

@@ -115,6 +115,7 @@
 /**
  * 添加显示实例
  */
+import BasePlanEditer from '../basePlanEditer'
 import { mapState } from "vuex";
 import editInfoPoint from "./editInfoPoint";
 import { Select, TreeSelect } from "meri-design";

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

@@ -224,7 +224,7 @@ import { dictQuery } from "@/api/datacenter";
 import { imgBaseUrl, imgServeUpload } from "@/api/imageservice";
 import { cloneDeep } from "lodash";
 import { rgbaNum, svgTobase64 } from "@persagy-web/big-edit/lib/until";
-
+import { SPlanDecorator } from "@/lib";
 import { SColor } from "@persagy-web/draw/lib";
 const list = [
     { name: "运行状态", id: "yxzt" },
@@ -312,7 +312,7 @@ export default {
         };
     },
     computed: {
-        ...mapState(["styleMap", "state", "id", "graphId", "buildingId", "floorId"]),
+        ...mapState(["styleMap", "state", "id", "graphId", "buildingId", "floorId", "equipItemMap"]),
     },
     watch: {
         // 是否打开弹窗
@@ -338,8 +338,7 @@ export default {
             }
         },
     },
-    mounted() {
-    },
+    mounted() {},
     methods: {
         ...mapMutations(["ADDSTYLE"]),
         // 展示标签输入框
@@ -485,6 +484,8 @@ export default {
             }
             if (res.result === "success") {
                 this.ADDSTYLE({ id: this.code, style });
+                // 修改图上设备类 样式
+                SPlanDecorator.equipMapDecorator(this.code, this.equipItemMap, this.styleMap);
                 this.dialogVisible = false;
                 this.$emit("closeModal");
             } else {

+ 1 - 0
src/components/editview/leftToolBar/pipeList.vue

@@ -5,6 +5,7 @@
       :width="188"
       iconType="search"
       v-model="getPressMsg"
+      placeholder="搜索管线名称"
       @pressEnter="pressEnter"
       @clear="pressEnter"
     />

+ 218 - 237
src/components/editview/rightPropertyBar/baseLinePro.vue

@@ -1,264 +1,245 @@
 <!-- 基本线的属性框 -->
 <template>
-  <div class="base-line">
-    <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>
-      <li>
-        <div class="property">
-          <div class="line-style">
-            <a-select
-              style="width: 80px; margin-right: 8px"
-              v-model="begin"
-              :default-value="arrowType[0].id"
-              @change="changeArrowType('begin')"
-            >
-              <a-select-option
-                v-for="item in arrowType"
-                :key="item.id"
-                :label="item.src"
-                :value="item.id"
-              >
-                {{ item.src }}
-              </a-select-option>
-            </a-select>
-            <a-select
-              style="width: 80px"
-              v-model="end"
-              :default-value="arrowType[0].id"
-              @change="changeArrowType('end')"
-            >
-              <a-select-option
-                v-for="item in arrowType"
-                :key="item.id"
-                :label="item.src"
-                :value="item.id"
-              >
-                {{ item.src }}
-              </a-select-option>
-            </a-select>
-            <span class="nametype">线型</span>
-          </div>
-        </div>
-      </li>
-    </ul>
-  </div>
+    <div class="base-line">
+        <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 class="text">颜色</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 class="text">线宽</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 class="text">线型</span>
+                    </div>
+                </div>
+            </li>
+            <li>
+                <div class="property">
+                    <div class="line-style">
+                        <div class="line-arrow">
+                            <a-select
+                                style="width: 80px; margin-right: 8px"
+                                v-model="begin"
+                                :default-value="arrowType[0].id"
+                                @change="changeArrowType('begin')"
+                            >
+                                <a-select-option v-for="item in arrowType" :key="item.id" :label="item.src" :value="item.id">
+                                    {{ item.src }}
+                                </a-select-option>
+                            </a-select>
+                            <span class="text">左箭头</span>
+                        </div>
+                        <div class="line-arrow">
+                            <a-select style="width: 80px" v-model="end" :default-value="arrowType[0].id" @change="changeArrowType('end')">
+                                <a-select-option v-for="item in arrowType" :key="item.id" :label="item.src" :value="item.id">
+                                    {{ item.src }}
+                                </a-select-option>
+                            </a-select>
+                            <span class="text">右箭头</span>
+                        </div>
+                    </div>
+                </div>
+            </li>
+        </ul>
+    </div>
 </template>
 <script>
 import bus from "@/bus/bus";
 export default {
-  props: ["strokeColor", "lineStyle", "lineWidth", "Begin", "End"],
-  data() {
-    return {
-      color: "",
-      linewidth: "",
-      linestyle: "",
-      begin: "None",
-      end: "None",
-      borderLineOption: [
-        {
-          id: "Solid",
-          src: require("@/assets/images/solidLine.png"),
+    // props: ["strokeColor", "lineStyle", "lineWidth", "Begin", "End",],
+    props: ["strokeColor", "lineStyle", "lineWidth", "Begin", "End", "TextItem"],
+    data() {
+        return {
+            color: "",
+            linewidth: "",
+            linestyle: "",
+            begin: "None",
+            end: "None",
+            borderLineOption: [
+                {
+                    id: "Solid",
+                    src: require("@/assets/images/solidLine.png"),
+                },
+                {
+                    id: "Dashed",
+                    src: require("@/assets/images/dashedLine.png"),
+                },
+            ],
+            // 箭头
+            arrowType: [
+                {
+                    id: "None",
+                    src: "无样式",
+                },
+                {
+                    id: "Basic",
+                    src: "基本箭头",
+                },
+                {
+                    id: "Triangle",
+                    src: "三角形箭头",
+                },
+                {
+                    id: "Diamond",
+                    src: "菱形箭头",
+                },
+                {
+                    id: "Square",
+                    src: "方形箭头",
+                },
+                {
+                    id: "Circle",
+                    src: "圆形箭头",
+                },
+            ],
+        };
+    },
+    methods: {
+        // 改变线宽
+        changeWidth(val) {
+            bus.$emit("updateStyle", "lineWidth", val);
         },
-        {
-          id: "Dashed",
-          src: require("@/assets/images/dashedLine.png"),
+        // 改变颜色
+        changeColor(val) {
+            bus.$emit("updateStyle", "strokeColor", val);
         },
-      ],
-      // 箭头
-      arrowType: [
-        {
-          id: "None",
-          src: "无样式",
+        // 改变线样式
+        changeLineStyle(val) {
+            bus.$emit("updateStyle", "lineStyle", val);
         },
-        {
-          id: "Basic",
-          src: "基本箭头",
+        // 改变箭头样式
+        changeArrowType(dir) {
+            bus.$emit("updateStyle", dir, this[dir]);
         },
-        {
-          id: "Triangle",
-          src: "三角形箭头",
+    },
+    mounted() {
+        // console.log(Select)
+        console.log(this.TextItem);
+        window._vm = this;
+    },
+    watch: {
+        strokeColor(val) {
+            this.color = val;
         },
-        {
-          id: "Diamond",
-          src: "菱形箭头",
+        lineWidth(val) {
+            this.linewidth = val;
         },
-        {
-          id: "Square",
-          src: "方形箭头",
+        lineStyle(val) {
+            console.log("lineStyle::::");
+            this.linestyle = val;
         },
-        {
-          id: "Circle",
-          src: "圆形箭头",
+        Begin(val) {
+            this.begin = val;
+        },
+        End(val) {
+            this.end = val;
         },
-      ],
-    };
-  },
-  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]);
-    },
-  },
-  mounted() {
-    // console.log(Select)
-  },
-  watch: {
-    strokeColor(val) {
-      this.color = val;
-    },
-    lineWidth(val) {
-      this.linewidth = val;
-    },
-    lineStyle(val) {
-        console.log('lineStyle::::')
-      this.linestyle = val;
-    },
-    Begin(val) {
-      this.begin = val;
-    },
-    End(val) {
-      this.end = val;
     },
-  },
 };
 </script>
 <style lang="less" scoped>
 ul,
 li {
-  margin: 0;
-  padding: 0;
-  list-style-type: none;
+    margin: 0;
+    padding: 0;
+    list-style-type: none;
 }
 .base-line {
-  .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;
-              }
+    .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;
+            margin-bottom: 12px;
+            .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;
+                    .line-arrow {
+                        display: flex;
+                        flex-direction: column;
+                        text-align: center;
+                    }
+                }
+                span {
+                    font-size: 12px;
+                    color: #1f2429;
+                    margin-top: 4px;
+                }
+            }
+            .text {
+                font-weight: 600;
             }
-          }
-        }
-        .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>

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

@@ -2,6 +2,7 @@
 <template>
     <div class="propertys" :class="{ width: itemType }">
         <baseTextPro
+            :TextItem="itemObj"
             :strokeColor="strokeColor"
             :fontSize="fontSize"
             :textMsg="textMsg"
@@ -41,10 +42,7 @@
             :Height="Height"
             v-show="itemType == 'BaseImage'"
         ></BaseImagePro>
-        <BaseEquipment
-            :EquipItem="itemObj"
-            v-if="itemObj && itemType == 'BaseEquipment'"
-        ></BaseEquipment>
+        <BaseEquipment :EquipItem="itemObj" v-if="itemObj && itemType == 'BaseEquipment'"></BaseEquipment>
     </div>
 </template>
 <script>

+ 79 - 2
src/views/home.vue

@@ -126,7 +126,7 @@ import leftFolder from "@/components/homeView/leftFolder.vue";
 // import leftAsideTree from "@/components/homeView/leftAsideTree.vue";
 import planImageCard from "@/components/homeView/planImageCard.vue";
 // import { queryDraftsGraph, queryPubGraph } from "@/api/home";
-import { planerQuery, pubPlanerQuery } from "@/api/labsl";
+import { planerQuery, pubPlanerQuery, planerRead, pubPlanerRead, planerSave } from "@/api/labsl";
 import rename from "@/components/homeView/rename";
 import move from "@/components/homeView/move";
 import deleteDialog from "@/components/homeView/deleteDialog";
@@ -379,9 +379,15 @@ export default {
          * 跳转编辑器
          */
         toEdit(data, floorLocalName, infos) {
-            const { name, id, graphId, buildingId, floorId, version } = data,
+            const { name, id, graphId, buildingId, floorId, version, state } = data,
                 { floorMap } = infos,
                 { folderId, folderName } = this;
+            // 已发布
+            if (state === "Publish") {
+                // TODO: 1111
+                // return this.handlePubImgCard(data, floorLocalName, infos);
+            }
+            // 未发布,直接跳转编辑器
             this.$router.push({
                 name: "Editer",
                 query: {
@@ -400,6 +406,77 @@ export default {
             });
         },
         /**
+         * 点击已发布卡片.逻辑处理:
+         * 如果在未发布中,有当前已发布的图的草稿,使用改未发布的草稿进行跳转
+         * 没有的话,调用保存接口,生成一张未发布的草稿,使用该草稿进行跳转
+         *
+         */
+        async handlePubImgCard(data, floorLocalName, infos) {
+            const { name, id, graphId, buildingId, floorId, version, state } = data,
+                { floorMap } = infos,
+                { folderId, folderName } = this;
+            const postParams = {
+                filters: `folderId='${folderId}'`,
+                PageNumber: 1,
+                PageSize: 1000,
+            };
+            if (this.queryText) {
+                postParams.filters += `;name contain '${this.queryText}'`;
+            }
+            const res = await planerQuery(postParams);
+            if (res.result !== "success") {
+                this.$message(res.result);
+            }
+            // 未发布中有该张图的备份草稿
+            if (res.content.filter((v) => v.id === id).length) {
+                // 点击确认后,会继续后续流程
+                let confirmRes;
+                try {
+                    confirmRes = await this.$confirm("未发布中有该张图,将使用未发布中的图进行编辑", "提示", {
+                        confirmButtonText: "确定",
+                        cancelButtonText: "取消",
+                        type: "warning",
+                    });
+                } catch (error) {
+                    console.log("点击取消");
+                }
+                // 点击确定,跳转编辑器
+                // 点击确定 confirmRes返回 confirm, 点击取消,confirmRes返回 undefined
+                confirmRes && this.finalToEdit();
+            } else {
+                // 未发布中,没有该张图的备份草稿
+                // 读取该已发布的图信息
+                const readRes = await pubPlanerRead({ graphId, id });
+                if (readRes.result !== "success") {
+                    this.$message(readRes.result);
+                }
+                const { name, projectId, elements, label } = readRes.content;
+                const saveParams = {
+                    graphId,
+                    graphCoding: id,
+                    name,
+                    projectId,
+                    elements,
+                    label,
+                    ruleList: [],
+                    style: {},
+                    objExtInfo: {},
+                };
+                // 保存该图,在未发布中,生成一张草稿
+                const resSave = await planerSave(saveParams);
+                if (resSave.result === "success") {
+                    this.finalToEdit();
+                } else {
+                    this.$message(resSave.result);
+                }
+                console.log("已发布, 保存生成一张未发布:", resSave);
+            }
+        },
+        /**
+         * 点击已发布,最终跳转编辑器
+         */
+        finalToEdit() {},
+        /**
          * 查询图形信息
          * @param { string } floderId 传入的文件ID,新建画布成功之后,会调用该接口
          * 如果传入floderId,使用该id,不传的话,使用全局的this.folderId