|
@@ -452,7 +452,6 @@ export default {
|
|
|
if (confirmRes) {
|
|
|
console.log(DraftPlanarGraph);
|
|
|
const { folderId, buildingId, floorId, id, graphId, name, version } = DraftPlanarGraph;
|
|
|
- debugger
|
|
|
this.finalToEdit({ folderId, folderName, buildingId, floorId, floorLocalName, name, id, graphId, floorMap, version });
|
|
|
}
|
|
|
} else {
|
|
@@ -462,14 +461,12 @@ export default {
|
|
|
if (readRes.result !== "success") {
|
|
|
this.$message(readRes.result);
|
|
|
}
|
|
|
- debugger;
|
|
|
// 保存该图,在未发布中,生成一张草稿
|
|
|
const resSave = await planerSave(readRes.content);
|
|
|
// 取出新建图的版本号
|
|
|
if (resSave.result === "success") {
|
|
|
const resSaveData = resSave.entityList[0];
|
|
|
const { folderId, buildingId, floorId, name, id, graphId, version } = resSaveData;
|
|
|
- debugger
|
|
|
this.finalToEdit({ folderName, floorLocalName, folderId, buildingId, floorId, name, id, graphId, version, floorMap });
|
|
|
} else {
|
|
|
this.$message(resSave.result);
|
|
@@ -480,7 +477,6 @@ export default {
|
|
|
* 点击已发布,最终跳转编辑器
|
|
|
*/
|
|
|
finalToEdit(query) {
|
|
|
- debugger;
|
|
|
this.$router.push({ name: "Editer", query });
|
|
|
},
|
|
|
/**
|