浏览代码

Merge branch 'dev' of git.sagacloud.cn:web/persagy-plan-editer into dev

zhangyu 4 年之前
父节点
当前提交
c890872b13

+ 5 - 3
src/components/editview/leftToolBar/addEquipmentDialog.vue

@@ -441,9 +441,11 @@ export default {
             if (res.result === "success") {
                 this.$message.success("添加成功");
                 // 在vuex中添加规则
-                this.ADDRULE(res.entityList[0]);
-                // 接口成功之后,发出添加设备指令
-                bus.$emit("addEquipment", this.tableDataBak);
+                if (res.entityList && res.entityList[0]) {
+                    this.ADDRULE(res.entityList[0]);
+                    // 接口成功之后,发出添加设备指令
+                    bus.$emit("addEquipment", this.tableDataBak);
+                }
                 // let timer = setTimeout(() => {
                 this.dialogTableVisible = false;
                 this.showPopover = false;

+ 7 - 6
src/components/editview/leftToolBar/addSpaceDialog.vue

@@ -233,7 +233,7 @@ export default {
                 return { id: v.id, name: v.localName };
             });
             this.spacePartitionInstance = [];
-            this.selectData = data ;
+            this.selectData = data;
         },
         // 空间功能类型
         async getDict() {
@@ -250,7 +250,6 @@ export default {
             // console.trace("getTableData");
             // 东坝地上二层
             const postParams = {
-                // equipTypes: [], // 设备类型列表
                 zoneTypes: this.spacePartitionType, //空间类型
                 spaceIds: this.spacePartitionInstance, //空间实例id
                 funcTypes: this.curentSelectTree3, //空间功能区类型
@@ -343,10 +342,12 @@ export default {
             if (res.result === "success") {
                 this.$message.success("添加成功");
                 // 在vuex中添加规则
-                this.ADDRULE(res.entityList[0]);
-                // 接口成功之后,发出添加空间指令
-                // TODO: 添加空间指令
-                bus.$emit("addZone", this.tableDataBak);
+                if (res.entityList && res.entityList[0]) {
+                    this.ADDRULE(res.entityList[0]);
+                    // 接口成功之后,发出添加空间指令
+                    // TODO: 添加空间指令
+                    bus.$emit("addZone", this.tableDataBak);
+                }
                 this.dialogTableVisible = false;
                 this.showPopover = false;
             } else {

+ 2 - 2
src/components/editview/leftToolBar/equipmentList.vue

@@ -69,8 +69,8 @@
             </div>
         </div>
 
-        <!-- 添加设备 -->
-        <div class="addbtn" @click="openAddEquipDialog"><i class="el-icon-plus"></i>添加设备</div>
+        <!-- 添加显示实例 -->
+        <div class="addbtn" @click="openAddEquipDialog"><i class="el-icon-plus"></i>添加显示实例</div>
         <edit-info-point type="equipment" @closeModal="showEditInfoPoint = false" :code="classCode" :showDialog="showEditInfoPoint" />
     </div>
 </template>

+ 14 - 2
src/components/homeView/planImageCard.vue

@@ -5,7 +5,8 @@
             <img :src="require('@/assets/images/noImg.png')" style="height: 60px" />
         </div>
         <img class="image" v-else :src="`/image-service/common/image_get?systemId=dataPlatform&key=${data.pic}`" />
-        <div class="shadow image" v-if="!isRecycle" @click.stop="toEdit">
+        <!-- 2020-12-25 10:24 添加类名show-checkbox, vuex中showCheckbox为true时,显示所有卡片的checkbox -->
+        <div class="shadow image" :class="{ 'show-checkbox': showCheckbox }" v-if="!isRecycle" @click.stop="toEdit">
             <el-checkbox v-model="data.checked" class="shadowCheck" @change="changeCheck"></el-checkbox>
         </div>
         <div class="content">
@@ -37,6 +38,7 @@
     </el-card>
 </template>
 <script>
+import { mapState } from "vuex";
 import { planerPublish } from "@/api/labsl";
 export default {
     props: {
@@ -71,6 +73,13 @@ export default {
             checked: false,
         };
     },
+    computed: {
+        // 是否显示CheckBox( 只有用户页面,平面图卡片有一个选中了,其他卡片的checkbox都显示出来)
+        ...mapState(["showCheckbox"]),
+    },
+    mounted() {
+        //
+    },
     methods: {
         // 显示下拉框内容选项判断
         dropdownItemShow(item) {
@@ -107,7 +116,7 @@ export default {
                         this.$message.success("发布成功");
                         this.$emit("publishSuc");
                     } else {
-                        this.$message.success("发布失败");
+                        this.$message.error("发布失败");
                     }
 
                     break;
@@ -167,6 +176,9 @@ export default {
             // background-color: #aaa;
         }
     }
+    .show-checkbox {
+        display: block;
+    }
     .content {
         padding: 8px 12px;
         vertical-align: middle;

+ 9 - 2
src/store/index.ts

@@ -25,8 +25,13 @@ export default new Vuex.Store({
         styleMap: {}, // 样式库信息
         ruleList: [], //规则列表
         objExtInfo: {}, // 对象实例信息
+        showCheckbox: false, // 卡片复选框是否显示
     },
     mutations: {
+        // 修改卡片复选框是否显示
+        SETCARDSHOWCHECKBOX(state, data) {
+            state.showCheckbox = data;
+        },
         // 修改编辑器命令
         SETCHOICELEHEND(state, data) {
             state.editCmd = data;
@@ -152,7 +157,8 @@ export default new Vuex.Store({
             // 如果实例数组中parent 为null 则删除该数组
             let arr1 = Object.keys(state.equipItemMap);
             let arr2 = Object.keys(state.zoneIteMap);
-            if (arr1.length) { // 如果设备实例不为空
+            if (arr1.length) {
+                // 如果设备实例不为空
                 arr1.forEach((key) => {
                     // @ts-ignore
                     if (!state.equipItemMap[key].parent) {
@@ -161,7 +167,8 @@ export default new Vuex.Store({
                     }
                 });
                 state.equipItemNum = Object.keys(state.equipItemMap).length;
-            } else if (arr2.length) { // 如果空间实例不为空
+            } else if (arr2.length) {
+                // 如果空间实例不为空
                 arr2.forEach((key) => {
                     // @ts-ignore
                     if (!state.zoneIteMap[key].parent) {

+ 21 - 4
src/views/home.vue

@@ -120,10 +120,8 @@
 
 <script>
 import { Select, DropDownButton } from "meri-design";
-// import { Dropdown } from "meri-design";
 import leftFolder from "@/components/homeView/leftFolder.vue";
 import planImageCard from "@/components/homeView/planImageCard.vue";
-// import { queryDraftsGraph, queryPubGraph } from "@/api/home";
 import { planerQuery, pubPlanerQuery, planerRead, pubPlanerRead, planerSave } from "@/api/labsl";
 import rename from "@/components/homeView/rename";
 import move from "@/components/homeView/move";
@@ -132,7 +130,7 @@ import tagDialog from "@/components/homeView/tagDialog";
 import recycle from "@/components/homeView/recycle";
 import createPlanarDialog from "@/components/homeView/createPlanarDialog";
 import { SNetUtil } from "@persagy-web/base";
-// import equipmentDeatil from "@/components/editview/equipmentDeatilDialog";
+import { mapState, mapMutations } from "vuex";
 export default {
     name: "home",
     components: {
@@ -193,7 +191,11 @@ export default {
             folderName: "", //文件夹名称
         };
     },
+    computed: {
+        ...mapState(["showCheckbox"]),
+    },
     methods: {
+        ...mapMutations(["SETCARDSHOWCHECKBOX"]),
         testClick(data) {
             console.log(data);
         },
@@ -409,7 +411,7 @@ export default {
                 PageNumber: 1,
                 PageSize: 1000,
             };
-            
+
             const res = await planerQuery(postParams);
             if (res.result !== "success") {
                 this.$message(res.result);
@@ -547,6 +549,21 @@ export default {
             this.selectCard = [];
             this.queryGraph();
         },
+        /**
+         * 监听选择的卡片长度,有选择大于1时,设置所有卡片的复选框显示
+         */
+        selectCard: {
+            handler(newV) {
+                if (newV.length) {
+                    console.log(newV);
+                    this.SETCARDSHOWCHECKBOX(true);
+                } else {
+                    this.SETCARDSHOWCHECKBOX(false);
+                }
+            },
+            deep: true,
+            immediate: true,
+        },
     },
 };
 </script>