Browse Source

用户页跳转编辑器参数修改

yunxing 4 years ago
parent
commit
7880931f6b

+ 2 - 1
src/components/editview/leftToolBar/addEquipmentDialog.vue

@@ -215,6 +215,7 @@ export default {
             handler(newV, oldV) {
                 if (!newV.length && oldV.length) {
                     this.spacePartitionInstance = [];
+                    this.curentSelectTree3 = [];
                     // this.getTableData();
                 }
             },
@@ -234,7 +235,7 @@ export default {
     },
     created() {},
     mounted() {
-        // window.vm = this;
+        window.vm = this;
         /*   setTimeout(() => {
             this.showPopover = true;
         }, 2000); */

+ 28 - 5
src/views/editer.vue

@@ -2,8 +2,8 @@
     <div class="editer">
         <div class="top-bar">
             <div class="left">
-                <div class="project-name">{{ tupoName }}</div>
-                <div class="project-type">/ {{ categoryName }}</div>
+                <div class="project-name">{{ name }}</div>
+                <div class="project-type">/ {{ floorLocalName }}({{ folderName }})</div>
                 <div class="project-save">自动保存成功- v {{ version }}</div>
             </div>
             <div class="right">
@@ -30,7 +30,17 @@ export default {
     components: { planEditer },
     data() {
         return {
-            categoryName: "", //项目分类
+            // categoryName: "", //项目分类
+            name: "", //图名称
+            folderId: "", //文件id
+            folderName: "", //文件夹名称
+            buildingId: "", //建筑id
+            floorId: "", //楼层id
+            floorMap: "", //floorMap
+            floorLocalName: "", //楼层本地名称
+            id: "", //图id
+            graphId: "", //图graphId
+            isPub: 0, //从用户页进入时,点击图是否是已发布的图 0: 未发布 1: 已发布
         };
     },
     methods: {
@@ -51,8 +61,21 @@ export default {
         ...mapState(["tupoName", "version"]),
     },
     mounted() {
-        this.categoryName = decodeURI(this.$route.query.categoryName);
-        console.log(decodeURI(decodeURI(window.location.href)));
+        // this.categoryName = decodeURI(this.$route.query.categoryName);
+        // console.log(decodeURI(decodeURI(window.location.href)));
+
+        //     folderId: "", //文件id
+        //     folderName: "", //文件夹名称
+        //     buildingId: "", //建筑id
+        //     floorId: "", //楼层id
+        //     floorMap: "", //floorMap
+        //     floorLocalName: "", //楼层本地名称
+        //     id: "", //图id
+        //     graphId: "", //图graphId
+        //     isPub: 0, /
+        // const { folderId, folderName, buildingId, floorId, floorMap, floorLocalName, id, graphId, isPub } = this.$route.query;
+        const arr = ["name", "folderId", "folderName", "buildingId", "floorId", "floorMap", "floorLocalName", "id", "graphId", "isPub"];
+        arr.map((key) => (this[key] = this.$route.query[key]));
     },
 };
 </script>

+ 11 - 9
src/views/home.vue

@@ -71,8 +71,10 @@
                 <div class="main-body" v-loading="cardLoading">
                     <div class="has-data-body" v-if="cardTree.length">
                         <div class="building" v-for="buildingData in cardTree" :key="buildingData.buildingId">
+                            <!-- 建筑名称 -->
                             <p class="buinding-name"><span class="border-left"></span> {{ buildingData.localName }}</p>
                             <div class="floor" v-for="floor in buildingData.floorList" :key="floor.floorId">
+                                <!-- 楼层名称 -->
                                 <p class="floor-name">{{ floor.localName }}</p>
                                 <template v-for="t in floor.planarGraphList">
                                     <planImageCard
@@ -85,7 +87,7 @@
                                         @moveTo="moveTo"
                                         @delete="deleteGraph"
                                         @editTag="editTag"
-                                        @toEdit="toEdit(t, floor.infos)"
+                                        @toEdit="toEdit(t, floor.localName, floor.infos || {})"
                                         @download="download"
                                     ></planImageCard>
                                 </template>
@@ -377,23 +379,23 @@ export default {
         /**
          * 跳转编辑器
          */
-        toEdit(data, infos) {
-            const { id, graphId, buildingId, floorId } = data,
+        toEdit(data, floorLocalName, infos) {
+            const { name, id, graphId, buildingId, floorId } = data,
                 { floorMap } = infos,
                 { folderId, folderName } = this;
-            console.log(data, infos);
-            this.$message.warning("功能开发中");
-            return true;
+            // this.$message.warning("功能开发中");
             this.$router.push({
                 name: "Editer",
                 query: {
+                    folderId,
+                    folderName,
                     buildingId,
                     floorId,
+                    floorLocalName,
+                    name,
                     id,
                     graphId,
-                    floorMap: infos.floorMap,
-                    folderId,
-                    folderName,
+                    floorMap: floorMap || "",
                     // categoryName: encodeURI(this.categoryName),
                     isPub: this.isPub,
                 },