|
@@ -426,6 +426,12 @@ export default {
|
|
|
loadings.close();
|
|
|
if (res.Result == "success") {
|
|
|
this.$message.success(res.Message);
|
|
|
+ const data = `categoryId=${this.urlMsg.categoryId}&projectId=${this.urlMsg.projectId}&BuildingID=${this.urlMsg.BuildingID}&FloorID=${this.urlMsg.FloorID}&fmapID=${this.urlMsg.fmapID}`;
|
|
|
+ const url =
|
|
|
+ window.location.origin +
|
|
|
+ "/wandaEditer/drafts?" +
|
|
|
+ encodeURIComponent(data);
|
|
|
+ window.open(url, true);
|
|
|
} else {
|
|
|
this.$message.error(res.Message);
|
|
|
}
|