فهرست منبع

添加version

yunxing 4 سال پیش
والد
کامیت
71491bb03d
3فایلهای تغییر یافته به همراه16 افزوده شده و 12 حذف شده
  1. 8 6
      src/components/editview/leftToolBar/addEquipmentDialog.vue
  2. 4 4
      src/views/editer.vue
  3. 4 2
      src/views/home.vue

+ 8 - 6
src/components/editview/leftToolBar/addEquipmentDialog.vue

@@ -111,6 +111,7 @@
 /**
  * 添加显示实例
  */
+import { mapState } from "vuex";
 import editInfoPoint from "./editInfoPoint";
 import { Select, TreeSelect } from "meri-design";
 import { cloneDeep } from "lodash";
@@ -200,6 +201,9 @@ export default {
             showEditInfoPoint: false, //显示编辑信息点弹窗
         };
     },
+    computed: {
+        ...mapState(["name", "folderId", "folderName", "buildingId", "floorId", "floorMap", "floorLocalName", "id", "graphId", "state"]),
+    },
     watch: {
         // 是否打开弹窗
         showDialog(val) {
@@ -325,10 +329,8 @@ export default {
             let postParams = {
                 pageNumber: 1,
                 pageSize: 1000,
-                floorId: "Fl11010500296bc7ca3a0d5d41419cf95c5b45116400",
-                buildingId: "Bd1101050029cb77fbd1846611eaac87cd1cd6a961c6",
-                // floorId: "",
-                // buildingId: "",
+                floorId: this.floorId, // "Fl11010500296bc7ca3a0d5d41419cf95c5b45116400",
+                buildingId: this.buildingId, // "Bd1101050029cb77fbd1846611eaac87cd1cd6a961c6",
                 zoneTypeList: this.spacePartitionType,
             };
             let res = await PartiInstancQuery(postParams);
@@ -362,8 +364,8 @@ export default {
                 zoneTypes: this.spacePartitionType, //空间类型
                 spaceIds: this.spacePartitionInstance, //空间实例id
                 funcTypes: this.curentSelectTree3, //空间功能区类型
-                floorId: "Fl11010500296bc7ca3a0d5d41419cf95c5b45116400",
-                buildingId: "Bd1101050029cb77fbd1846611eaac87cd1cd6a961c6",
+                floorId: this.floorId, // "Fl11010500296bc7ca3a0d5d41419cf95c5b45116400",
+                buildingId: this.buildingId, // "Bd1101050029cb77fbd1846611eaac87cd1cd6a961c6",
             };
             let res = await equipQuery(postParams);
             let data = res.content || [];

+ 4 - 4
src/views/editer.vue

@@ -34,7 +34,7 @@ export default {
         };
     },
     methods: {
-        ...mapMutations(["SETPROJECT"]),
+        ...mapMutations(["SETPROJECT", "SETVERSION"]),
         // 保存图片
         saveTopo() {
             bus.$emit("saveTopo");
@@ -51,8 +51,6 @@ export default {
     computed: {
         ...mapState([
             "tupoName",
-            "version",
-
             "name",
             "folderId",
             "folderName",
@@ -62,6 +60,7 @@ export default {
             "floorLocalName",
             "id",
             "graphId",
+            "version",
             "state",
         ]),
     },
@@ -77,9 +76,10 @@ export default {
         //     floorLocalName: "", //楼层本地名称
         //     id: "", //图id
         //     graphId: "", //图graphId
-        //     isPub: 0, /
+        //     state: "Draft", /
         // const { folderId, folderName, buildingId, floorId, floorMap, floorLocalName, id, graphId, state } = this.$route.query;
         // this.SETPROJECT({ folderId, folderName, buildingId, floorId, floorMap, floorLocalName, id, graphId, state });
+        this.SETVERSION(this.$route.query.version);
         this.SETPROJECT(this.$route.query);
     },
 };

+ 4 - 2
src/views/home.vue

@@ -380,10 +380,11 @@ export default {
          * 跳转编辑器
          */
         toEdit(data, floorLocalName, infos) {
-            const { name, id, graphId, buildingId, floorId } = data,
+            const { name, id, graphId, buildingId, floorId, version } = data,
                 { floorMap } = infos,
                 { folderId, folderName } = this;
             // this.$message.warning("功能开发中");
+            debugger;
             this.$router.push({
                 name: "Editer",
                 query: {
@@ -397,7 +398,8 @@ export default {
                     graphId,
                     floorMap: floorMap || "",
                     // categoryName: encodeURI(this.categoryName),
-                    isPub: this.isPub === 1 ? "Publish" : "Draft", // 1: 已发布 0: 未发布
+                    state: this.isPub === 1 ? "Publish" : "Draft", // 1: 已发布 0: 未发布
+                    version,
                 },
             });
         },