zhangyu vor 4 Jahren
Ursprung
Commit
441b452a49

+ 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 || [];

+ 1 - 1
src/views/editer.vue

@@ -32,7 +32,7 @@ export default {
         return {};
     },
     methods: {
-        ...mapMutations(["SETPROJECT"]),
+        ...mapMutations(["SETPROJECT", "SETVERSION"]),
         // 保存图片
         saveTopo() {
             bus.$emit("saveTopo");

+ 15 - 12
src/views/home.vue

@@ -120,27 +120,28 @@
 </template>
 
 <script>
-import { Select, Dropdown, DropDownButton } from "meri-design";
+import { Select, DropDownButton } from "meri-design";
+// import { Dropdown } from "meri-design";
 import leftFolder from "@/components/homeView/leftFolder.vue";
-import leftAsideTree from "@/components/homeView/leftAsideTree.vue";
+// import leftAsideTree from "@/components/homeView/leftAsideTree.vue";
 import planImageCard from "@/components/homeView/planImageCard.vue";
-import { queryDraftsGraph, queryPubGraph } from "@/api/home";
+// import { queryDraftsGraph, queryPubGraph } from "@/api/home";
 import { planerQuery, pubPlanerQuery } from "@/api/labsl";
 import rename from "@/components/homeView/rename";
 import move from "@/components/homeView/move";
 import deleteDialog from "@/components/homeView/deleteDialog";
 import tagDialog from "@/components/homeView/tagDialog";
 import recycle from "@/components/homeView/recycle";
-import createGraphDialog from "@/components/homeView/createGraphDialog";
+// import createGraphDialog from "@/components/homeView/createGraphDialog";
 import createPlanarDialog from "@/components/homeView/createPlanarDialog";
 import { SNetUtil } from "@persagy-web/base";
-import equipmentDeatil from "@/components/editview/equipmentDeatilDialog";
+// import equipmentDeatil from "@/components/editview/equipmentDeatilDialog";
 export default {
     name: "home",
     // components: { leftAsideTree, createGraphDialog },
     components: {
         Select,
-        Dropdown,
+        // Dropdown,
         DropDownButton,
         planImageCard,
         rename,
@@ -150,7 +151,7 @@ export default {
         tagDialog,
         createPlanarDialog,
         leftFolder,
-        equipmentDeatil,
+        // equipmentDeatil,
     },
     data() {
         return {
@@ -258,7 +259,7 @@ export default {
         // 选项改变
         changeCheck(v) {
             // 获取该对象在选中数组中的下标(按照id匹配)
-            let index = this._.findIndex(this.selectCard, ["id", v.id]);
+            const index = this._.findIndex(this.selectCard, ["id", v.id]);
             if (index !== -1) {
                 this.selectCard.splice(index, 1);
             } else {
@@ -380,10 +381,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: {
@@ -396,7 +398,8 @@ export default {
                     id,
                     graphId,
                     floorMap: floorMap || "",
-                    state: this.isPub === 1 ? "Publish" : "Draft", // 1: 已发布 0: 未发布
+                    state: this.isPub === 1 ? "Publish" : "Draft", // Publish: 已发布 Draft: 未发布
+                    version,
                 },
             });
         },
@@ -442,8 +445,8 @@ export default {
                 this.cardLoading = false;
                 return false;
             }
-            let cardTree = [],
-                cardList = [];
+            let cardTree = [];
+            const cardList = [];
             cardTree = res?.content?.map((building) => {
                 building?.floorList?.map((_floor) => {
                     _floor?.planarGraphList?.map((card) => {