Browse Source

保存发布后显示不一致问题

YaolongHan 4 years ago
parent
commit
7c9ac3c667
1 changed files with 16 additions and 1 deletions
  1. 16 1
      src/components/editview/baseTopoEditer.vue

+ 16 - 1
src/components/editview/baseTopoEditer.vue

@@ -272,7 +272,6 @@ export default {
           this.ADDEQUIPITEM(item);
         }
       });
-      console.log('anchorList',anchorList)
       parse.relations.forEach((t) => {
         // 设置锚点
         if (t.anchor1Id) {
@@ -411,6 +410,22 @@ export default {
         id: this.id,
       };
       publishGraph(pa).then((res) => {
+        // 设置发布状态为 未发布
+        this.SETISPUB(1);
+        const gid = res.entityList[0].graphId;
+        const id = res.entityList[0].id;
+        // 重设图id 与 id
+        this.SETPROJECT({ graphId: gid, id: id });
+        // 修改url参数
+        this.$router.push({
+          name: "Editer",
+          query: {
+            graphId: gid,
+            id: id,
+            categoryName: encodeURI(this.categoryName),
+            isPub: 1,
+          },
+        });
         this.$message.success("发布成功");
       });
     },