|
@@ -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("发布成功");
|
|
|
});
|
|
|
},
|