Quellcode durchsuchen

解决平面图发布功能 以及 草稿箱的loading加载一致

xiebeibei vor 4 Jahren
Ursprung
Commit
f0e8415ee5
3 geänderte Dateien mit 40 neuen und 49 gelöschten Zeilen
  1. 20 22
      src/components/baseEditer.vue
  2. 3 14
      src/components/edit/top_toolbar.vue
  3. 17 13
      src/views/drafts.vue

+ 20 - 22
src/components/baseEditer.vue

@@ -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 {

+ 3 - 14
src/components/edit/top_toolbar.vue

@@ -129,7 +129,7 @@ export default {
       scale: 0.5, //底图缩放比例
       initScale: 0.5,  //初始 底图缩放比例
       baseScale: 1.0,  //底图基础缩放比例,由底图加载完成后,传入进来
-      scaleStep: 0.05, // +-缩放步进 
+      scaleStep: 0.05, // +-缩放步进
     };
   },
   computed: {
@@ -153,13 +153,13 @@ export default {
      * @description 滚轮滚动,导致的底图缩放比例 逻辑处理
      */
     getMouseScale() {
-      //  zoom 为缩放后改变的比例 
+      //  zoom 为缩放后改变的比例
       bus.$on('mouseScale', zoom => {
         this.scale = Number((zoom * this.initScale).toFixed(2))
       })
     },
     /**
-     * @name handleScale 
+     * @name handleScale
      * @param { Number } type  -1:点击 - 缩小底图; 1:点击 + 放大底图
      * @description 点击 -+ 缩放底图
      */
@@ -224,16 +224,10 @@ export default {
       console.log("itemMsg", itemMsg);
       this.FocusItemChanged(itemMsg);
     });
-<<<<<<< HEAD
-      bus.$on("setGraphId", setGraphId => {
-      console.log("itemMsg", setGraphId);
-    });
-=======
     // 获取底图加载完成后的初始sacle
     await this.getInitScale()
     // 监听滚轮 底图缩放比例
     this.getMouseScale()
->>>>>>> 023961b36b18c0d07bd14a95254cd64636182fc4
   },
   created() {
     const href = window.location.href;
@@ -255,12 +249,7 @@ export default {
       obj[arr[0]] = arr[1];
     });
     this.urlMsg = obj;
-<<<<<<< HEAD
     const FloorName =  this.urlMsg.FloorName ? this.urlMsg.FloorName:'';
-=======
-    // ///////////测试代码
-    const FloorName = this.urlMsg.FloorName ? this.urlMsg.FloorName : '';
->>>>>>> 023961b36b18c0d07bd14a95254cd64636182fc4
     this.urlMsg.floorName = systym[this.urlMsg.categoryId] + '-' + FloorName;
   }
 };

+ 17 - 13
src/views/drafts.vue

@@ -1,6 +1,5 @@
 <template>
   <div id="drafts">
-    <a-spin :spinning="spinning">
       <div class="tit">草稿箱</div>
       <div class="conent">
         <div class="left-nav">
@@ -62,7 +61,6 @@
           </div>
         </div>
       </div>
-    </a-spin>
   </div>
 </template>
 <script>
@@ -83,6 +81,7 @@ import { STopologyParser } from "./../lib/parsers/STopologyParser";
 import { uuid } from "@/components/mapClass/until";
 import { SImageItem } from "@saga-web/graph/lib";
 import store from "../store";
+import {Loading} from "element-ui";
 let fengmap = null;
 export default {
   components: { Tree },
@@ -119,7 +118,6 @@ export default {
       fmapID: "", //蜂鸟地图id
       graphId: "", //绘制生成得图id
       legendLoading: false,
-      spinning: false, //全局加载
       systemName: "",
       floorName: "",
       floorId: "", //楼层id
@@ -242,10 +240,15 @@ export default {
     },
     //删除
     deleteBtn() {
-      this.spinning = true;
+      const loadings = Loading.service({
+        lock: true,
+        text: "Loading",
+        spinner: "el-icon-loading",
+        background: "rgba(0, 0, 0, 0.7)"
+      });
       deleteGraph([{ Id: this.graphId }]).then(res => {
         console.log(res);
-        this.spinning = false;
+        loadings.close();
         if (res.Result == "success") {
           this.$message.success("删除成功");
           this.getTreeData();
@@ -257,7 +260,12 @@ export default {
     },
     //发布
     publishBtn() {
-      this.spinning = true;
+      const loadings = Loading.service({
+        lock: true,
+        text: "Loading",
+        spinner: "el-icon-loading",
+        background: "rgba(0, 0, 0, 0.7)"
+      });
       const data = {
         BuildingID: this.BuildingID,
         CategoryID: this.categoryId,
@@ -267,9 +275,11 @@ export default {
         PubUser: ""
       };
       publishGraph(data).then(res => {
-        this.spinning = false;
+        loadings.close();
         if (res.Result == "success") {
           this.$message.success(res.Message);
+          this.getTreeData();
+          this.legendData = [];
         } else {
           this.$message.error(res.Message);
         }
@@ -380,12 +390,6 @@ export default {
 };
 </script>
 <style lang="less" scoped>
-/deep/ .ant-spin-nested-loading {
-  height: 100% !important;
-  .ant-spin-container {
-    height: 100% !important;
-  }
-}
 #drafts {
   widows: 100%;
   height: 100%;