|
@@ -49,12 +49,9 @@ export default {
|
|
|
urlMsg: {},
|
|
|
chiceItemList: [], //选中itemlist
|
|
|
hasTypeList: [], // 当前类型下包含的typeid(提取)
|
|
|
-<<<<<<< HEAD
|
|
|
- graphId:''
|
|
|
-=======
|
|
|
+ graphId:'',
|
|
|
initScale: 1, //加载好底图之后的,初始缩放比例
|
|
|
changeScaleByClick: false, //区分 滚轮,点击 事件改变的缩放比例
|
|
|
->>>>>>> 023961b36b18c0d07bd14a95254cd64636182fc4
|
|
|
};
|
|
|
},
|
|
|
mounted() {
|
|
@@ -364,28 +361,23 @@ export default {
|
|
|
bus.$on("changeitemExplain", val => {
|
|
|
this.scene.upadatitemExplain(val);
|
|
|
});
|
|
|
-<<<<<<< HEAD
|
|
|
-=======
|
|
|
//发布图
|
|
|
- // bus.$on("publishGraph", val => {
|
|
|
- // this.spinning = true;
|
|
|
- // publishGraph({ graphId: this.graphId, pubUser: "" }).then(res => {
|
|
|
- // this.spinning = false;
|
|
|
- // if (res.Result == "success") {
|
|
|
- // this.$message.success(res.Message);
|
|
|
- // } else {
|
|
|
- // this.$message.error(res.Message);
|
|
|
- // }
|
|
|
- // });
|
|
|
- // });
|
|
|
->>>>>>> 023961b36b18c0d07bd14a95254cd64636182fc4
|
|
|
+ bus.$on("publishGraph", val => {
|
|
|
+ publishGraph({ graphId: this.graphId, pubUser: "" }).then(res => {
|
|
|
+ if (res.Result == "success") {
|
|
|
+ this.$message.success(res.Message);
|
|
|
+ } else {
|
|
|
+ this.$message.error(res.Message);
|
|
|
+ }
|
|
|
+ });
|
|
|
+ });
|
|
|
//创建区域是否点选
|
|
|
bus.$on("changeDrawType", val => {
|
|
|
this.scene.isSelecting = val == "select";
|
|
|
}),
|
|
|
//发布图
|
|
|
bus.$on("publishMap", () => {
|
|
|
- this.publishMap()
|
|
|
+ this.publishBtn()
|
|
|
})
|
|
|
/**
|
|
|
* @name changeScale缩放底图
|
|
@@ -415,8 +407,14 @@ export default {
|
|
|
},
|
|
|
//发布
|
|
|
publishBtn() {
|
|
|
- this.spinning = true;
|
|
|
- const data = {
|
|
|
+ console.log(this.graphId);
|
|
|
+ const loadings = Loading.service({
|
|
|
+ lock: true,
|
|
|
+ text: "Loading",
|
|
|
+ spinner: "el-icon-loading",
|
|
|
+ background: "rgba(0, 0, 0, 0.7)"
|
|
|
+ });
|
|
|
+ const data = {
|
|
|
BuildingID: this.urlMsg.BuildingID,
|
|
|
CategoryID: this.urlMsg.categoryId,
|
|
|
FloorID: this.urlMsg.FloorID,
|
|
@@ -425,7 +423,7 @@ export default {
|
|
|
PubUser: ""
|
|
|
};
|
|
|
publishGraph(data).then(res => {
|
|
|
- this.spinning = false;
|
|
|
+ loadings.close();
|
|
|
if (res.Result == "success") {
|
|
|
this.$message.success(res.Message);
|
|
|
} else {
|