ソースを参照

'状态管理'

zhangyu 4 年 前
コミット
e479f78e31

+ 19 - 23
src/components/editview/basePlanEditer.vue

@@ -36,7 +36,7 @@ export default {
                         fillColor: "#F0F3F7",
                         lineWidth: 1,
                         effect: {},
-                    }
+                    },
                 };
             },
             required: false,
@@ -44,15 +44,15 @@ export default {
         // 设备默认样式
         defaultEquipStyle: {
             type: Object,
-            default: () =>{
+            default: () => {
                 return {
                     color: "#1F2429",
                     size: 12,
                     url: "tognyong2020102700.svg",
                     formula: "",
-                }
-            }
-        }
+                };
+            },
+        },
     },
     data() {
         return {
@@ -68,12 +68,9 @@ export default {
         };
     },
     computed: {
-        ...mapState(["editCmd", "legendObj", "graphId", "id", "isPub", "categoryId", "projectId", "version", "equipItemList"]),
+        ...mapState(["editCmd", "legendObj", "graphId", "id", "state", "categoryId", "projectId", "version", "equipItemList"]),
     },
     created() {
-        this.SETPROJECT(this.$route.query);
-        this.SETISPUB(this.$route.query.isPub);
-        this.categoryName = decodeURI(this.$route.query.categoryName);
         this.clearImg();
     },
     mounted() {
@@ -333,7 +330,7 @@ export default {
                 graphId: this.graphId,
                 id: this.id,
             };
-            if (this.isPub == 1) {
+            if (this.state === "Publish") {
                 // 已发布
                 readPubGroup(obj).then((res) => {
                     this.getDataSuc(res);
@@ -466,7 +463,7 @@ export default {
                         equip.pos = equip.locationJson;
                     } else {
                         // 否则显示默认坐标位置
-                        equip.pos = { x: 0, y: 0 ,z: 0};
+                        equip.pos = { x: 0, y: 0, z: 0 };
                     }
                     const equipItem = new SPlanEquipment(null, equip);
                     equipItem.selectable = true;
@@ -539,24 +536,24 @@ export default {
             const elements = this.scene.save();
             const obj = {
                 elements,
-                name: this.topoContent.name, // 名称
-                categoryId: this.categoryId, // 图分类ID
-                projectId: this.projectId, // 项目ID
-                label: this.topoContent.label,
-                buildingId: "1", // 建筑ID
-                floorId: "1", // 楼层id
-                note: "1", // 图说明
+                // name: this.topoContent.name, // 名称
+                // categoryId: this.categoryId, // 图分类ID
+                // projectId: this.projectId, // 项目ID
+                // label: this.topoContent.label,
+                // buildingId: "1", // 建筑ID
+                // floorId: "1", // 楼层id
+                // note: "1", // 图说明
                 pic: `${uuid}.png`,
                 graphId: this.graphId,
                 id: this.id,
-                version: this.version,
+                // version: this.version,
             };
             return new Promise((resolve, reject) => {
                 saveGroup(obj).then((res) => {
                     // 如果是从已发布跳转过来
-                    if (this.isPub == 1) {
+                    if (this.state === "Publish") {
                         // 设置发布状态为 未发布
-                        this.SETISPUB(0);
+                        this.SETSTATE("Draft");
                         const gid = res.entityList[0].graphId;
                         const id = res.entityList[0].id;
                         // 重设图id 与 id
@@ -567,8 +564,7 @@ export default {
                             query: {
                                 graphId: gid,
                                 id: id,
-                                categoryName: encodeURI(this.categoryName),
-                                isPub: 0,
+                                state: "Draft",
                             },
                         });
                     }

+ 3 - 2
src/components/homeView/createPlanarDialog.vue

@@ -191,7 +191,7 @@ export default {
             const floorNode = this.$refs.buildFloor.getCheckedNodes()[0];
             const buildingId = this.ruleForm.buildFloor[0];
             const floorId = this.ruleForm.buildFloor[1];
-            const floorName = floorNode.label;
+            const floorLocalName = floorNode.label;
             const floorMap = floorNode.data.info && floorNode.data.info.floorMap ? floorNode.data.info.floorMap : "";
             const folderName = folder ? folder.name : this.ruleForm.folder;
             const params = {
@@ -226,10 +226,11 @@ export default {
                         graphId: entity.graphId,
                         folderId: entity.folderId,
                         name: entity.name,
+                        version: entity.version,
                         state: "Draft",
                         floorMap,
                         folderName,
-                        floorName,
+                        floorLocalName,
                     },
                 });
             } else {

+ 1 - 17
src/store/index.ts

@@ -17,16 +17,13 @@ export default new Vuex.Store({
         floorLocalName: "", //楼层本地名称
         id: "", //图id
         graphId: "", //图graphId
+        version: "", //版本号
         state: "", //图状态,  Draft: 未发布, WaitCheck: 待审核, Checked: 审核完成, Recyle: 回收站, Publish: 发布
 
-        // graphId: '',    //图 id 用于读图
-        // id: '',        // id  用于读图
         isPub: 0, // 用于读图 区分读取 已发布 or 未发布
         projectId: "Pj1101050029", // projectId
         categoryId: "", //类型id 用于读图
-        // folderId: '',// 文件夹id
         tupoName: "", //拓扑图名称
-        version: "", //版本号
         equipmentItemList: [], // 图上相关的设备实例
         equipmentItemNum: 0, // 图上相关的设备实例的数量
         equipItemList: {}, // 图上相关的设备实例
@@ -47,18 +44,6 @@ export default new Vuex.Store({
         },
         // 设置项目信息
         SETPROJECT(state, data) {
-            // name:'',//图名称
-            // folderId: "", //文件id
-            // folderName: "", //文件夹名称
-            // buildingId: "", //建筑id
-            // floorId: "", //楼层id
-            // floorMap: "", //floorMap
-            // floorLocalName: "", //楼层本地名称
-            // id: "", //图id
-            // graphId: "", //图graphId
-            // state:'', //图状态,  Draft: 未发布, WaitCheck: 待审核, Checked: 审核完成, Recyle: 回收站, Publish: 发布
-
-            // const { folderId, folderName, buildingId, floorId, floorMap, floorLocalName, id, graphId, state } = data;
             const arr = ["name", "folderId", "folderName", "buildingId", "floorId", "floorMap", "floorLocalName", "id", "graphId", "state"];
             arr.map((key) => {
                 // 对传入的参数进行修改
@@ -80,7 +65,6 @@ export default new Vuex.Store({
             state.version = val.version; //版本号
         },
         SETVERSION(state, val) {
-            console.log("asdfasfas", val);
             state.version = val; //版本号
         },
         // 增加设备实例 item

+ 4 - 34
src/views/editer.vue

@@ -2,8 +2,8 @@
     <div class="editer">
         <div class="top-bar">
             <div class="left">
-                <div class="project-name">{{ name }}</div>
-                <div class="project-type">/ {{ floorLocalName }}({{ folderName }})</div>
+                <div class="project-name">{{ name }}-{{ floorLocalName }}</div>
+                <div class="project-type">/ {{ folderName }}</div>
                 <div class="project-save">自动保存成功- v {{ version }}</div>
             </div>
             <div class="right">
@@ -29,9 +29,7 @@ import { mapState, mapMutations } from "vuex";
 export default {
     components: { planEditer },
     data() {
-        return {
-            categoryName: "", //项目分类
-        };
+        return {};
     },
     methods: {
         ...mapMutations(["SETPROJECT"]),
@@ -49,37 +47,9 @@ export default {
         },
     },
     computed: {
-        ...mapState([
-            "tupoName",
-            "version",
-
-            "name",
-            "folderId",
-            "folderName",
-            "buildingId",
-            "floorId",
-            "floorMap",
-            "floorLocalName",
-            "id",
-            "graphId",
-            "state",
-        ]),
+        ...mapState(["version", "name", "folderName", "floorLocalName"]),
     },
     mounted() {
-        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, state } = this.$route.query;
-        // this.SETPROJECT({ folderId, folderName, buildingId, floorId, floorMap, floorLocalName, id, graphId, state });
         this.SETPROJECT(this.$route.query);
     },
 };

+ 1 - 2
src/views/home.vue

@@ -396,8 +396,7 @@ export default {
                     id,
                     graphId,
                     floorMap: floorMap || "",
-                    // categoryName: encodeURI(this.categoryName),
-                    isPub: this.isPub === 1 ? "Publish" : "Draft", // 1: 已发布 0: 未发布
+                    state: this.isPub === 1 ? "Publish" : "Draft", // 1: 已发布 0: 未发布
                 },
             });
         },