haojianlong 4 anni fa
parent
commit
970a125891

+ 2 - 2
package.json

@@ -19,8 +19,8 @@
     "@persagy-web/big": "2.2.61",
     "@persagy-web/draw": "2.2.17",
     "@persagy-web/graph": "2.2.52",
-    "@persagy-web/big-edit": "2.2.42",
-    "@persagy-web/edit": "2.2.34",
+    "@persagy-web/big-edit": "2.2.46",
+    "@persagy-web/edit": "2.2.36",
     "@types/uuid": "^8.0.0",
     "ant-design-vue": "^1.6.5",
     "axios": "^0.20.0",

+ 2 - 2
src/components/editview/baseTopoEditer.vue

@@ -395,7 +395,7 @@ export default {
         (vals) => {
           // 重设版本号
           this.SETVERSION(vals[1].version);
-          this.$message.success(`保存成功${vals[1].version}`);
+          this.$message.success(`保存成功`);
         }
       );
     },
@@ -509,7 +509,7 @@ export default {
             isPub: 1,
           },
         });
-        this.$message.success("发布成功");
+        this.$message.success(`发布成功${res.entityList[0].version}`);
       });
     },
     // 手动添加设备

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

@@ -19,6 +19,7 @@
               :data="categoryList"
               showPanel
               width="300"
+              :hideClear="true"
               @confirm="changeEquip"
             ></Cascader>
             <Cascader
@@ -26,6 +27,7 @@
               allText="全部"
               multiple
               :data="buildFloorList"
+              :hideClear="true"
               @confirm="changeFloor"
               showPanel
               width="300"

+ 1 - 1
src/components/homeView/topoImageCard.vue

@@ -142,7 +142,7 @@ export default {
         case "publish":
           publishGraph(pa).then((res) => {
             if (res.result == "success") {
-              this.$message.success("发布成功");
+              this.$message.success(`发布成功${res.entityList[0].version}`);
               this.$emit("publishSuc");
             } else {
               this.$message.success("发布失败");

+ 35 - 32
src/views/home.vue

@@ -342,47 +342,50 @@ export default {
               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");
+                const query= {
+                  graphId: res.graphId,
+                  id: res.id,
+                  categoryName: encodeURI(this.categoryName),
+                  isPub: 0,
+                  projectId: this.projectId,
+                }
+                this.finalToEdit(query)
               })
               .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");
+            const query={
+              graphId: data.graphId,
+              id: data.id,
+              categoryName: encodeURI(this.categoryName),
+              isPub: this.isPub,
+              projectId: this.projectId,
+            }
+            this.finalToEdit(query)
           }
         });
       } else {
         // 进入草稿
-        let routeUrl = this.$router.resolve({
+        const query= {
+          graphId: data.graphId,
+          id: data.id,
+          categoryName: encodeURI(this.categoryName),
+          isPub: this.isPub,
+          projectId: this.projectId,
+        }
+        this.finalToEdit(query)
+      }
+    },
+    /**
+     * 点击已发布,最终跳转编辑器
+     */
+    finalToEdit(query) {
+      setTimeout(() => {
+        const routeUrl = this.$router.resolve({
           name: "Editer",
-          query: {
-            graphId: data.graphId,
-            id: data.id,
-            categoryName: encodeURI(this.categoryName),
-            isPub: this.isPub,
-            projectId: this.projectId,
-          },
+          query,
         });
         window.open(routeUrl.href, "_blank");
-      }
+      }, 500)
     },
     /////////////////接口
     // 查询图形信息
@@ -639,4 +642,4 @@ export default {
     border-bottom-color: #0091ffff;
   }
 }
-</style>
+</style>