Przeglądaj źródła

编辑信息点页面提交

yunxing 4 lat temu
rodzic
commit
c33160b10f

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

@@ -22,7 +22,7 @@
             </SidebarCustom>
         </div>
         <!-- TODO: -->
-        <!-- <edit-info-point type="equipment"  /> -->
+        <edit-info-point type="equipment"  />
     </div>
 </template>
 <script>

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

@@ -401,7 +401,7 @@ export default {
             const postParams = {
                 content: [
                     {
-                        id: this.id,
+                        graphCoding: this.id,
                         graphId: this.graphId,
                         returnType: "equip", // 返回类型(equip: 设备, equipGroup: 设备组, zone: 空间)
                         commond: "query", // 命令类型(query: 查询, delete: 删除)

+ 72 - 19
src/components/editview/leftToolBar/editInfoPoint.vue

@@ -21,7 +21,7 @@
                 <div class="tag-container">
                     <el-tag
                         :key="`${index}_${tag}`"
-                        v-for="(tag, index) in dynamicTags"
+                        v-for="(tag, index) in chooseList"
                         closable
                         :disable-transitions="false"
                         @close="handleClose(tag)"
@@ -44,8 +44,16 @@
             </div>
             <!-- 信息点 -->
             <div class="info-point">
-                <div class="header">选择信息点</div>
-                <div class="instantaneous">
+                <div class="header">
+                    <div>选择信息点</div>
+                </div>
+                <div v-for="(item, index) in list" :key="index">
+                    <div class="title">{{ item[0].firstName || "信息" }}</div>
+                    <el-checkbox-group v-model="chooseList" class="m-check-group">
+                        <el-checkbox v-for="({ name }, secIndex) in item" :title="name" :label="name" :key="secIndex" />
+                    </el-checkbox-group>
+                </div>
+                <!-- <div class="instantaneous">
                     <div class="title">瞬时状态</div>
                     <el-checkbox-group v-model="instantaneousCheckList" class="m-check-group">
                         <el-checkbox v-for="({ name }, index) in instantaneousList" :label="name" :key="index" />
@@ -56,7 +64,7 @@
                     <el-checkbox-group v-model="accumulativeCheckList" class="m-check-group">
                         <el-checkbox v-for="({ name }, index) in accumulativeList" :label="name" :key="index" />
                     </el-checkbox-group>
-                </div>
+                </div> -->
             </div>
         </div>
 
@@ -182,6 +190,7 @@
  * 编辑信息点页面
  * 添加设备,设备组,空间 三个共用
  */
+import { dictQuery } from "@/api/datacenter";
 import { cloneDeep } from "lodash";
 const list = [
     { name: "运行状态", id: "yxzt" },
@@ -212,22 +221,28 @@ export default {
             type: String,
             required: true,
         },
+        // 设备code值
+        codeType: {
+            type: String,
+            required: true,
+        },
     },
     components: {},
     data() {
         return {
-            dialogVisible: false,
-            tab: 1,
-            dynamicTags: Array(10).fill(123),
+            dialogVisible: true,
+            tab: 0,
+            chooseList: [],
             inputVisible: false,
             inputValue: null,
 
             //瞬时状态列表
-            instantaneousCheckList: [],
-            instantaneousList: cloneDeep(list),
+            // instantaneousCheckList: [],
+            // instantaneousList: cloneDeep(list),
             // 累计指标列表
-            accumulativeCheckList: [],
-            accumulativeList: cloneDeep(list),
+            list: [],
+            // accumulativeCheckList: [],
+            // accumulativeList: cloneDeep(list),
             /** -------------------设备属性使用值start-------------------------- */
             equipmentData: {
                 color: "",
@@ -281,6 +296,17 @@ export default {
             deep: true,
         },
     },
+    async created() {
+        console.time(1);
+        const res = await dictQuery({ pageNumber: 1, pageSize: 1000, type: this.codeType || "FFFSSN" });
+        console.timeEnd(1);
+        console.time(2);
+        let data = res.content;
+        // 按照一级名称,将一维数组拆分成二维数组
+        data = this._(data).groupBy("firstName").values().value();
+        this.list = data;
+        console.timeEnd(2);
+    },
     beforeMount() {},
     mounted() {
         // window.vm = this;
@@ -308,14 +334,14 @@ export default {
         handleInputConfirm() {
             const inputValue = this.inputValue;
             if (inputValue) {
-                this.dynamicTags.push(inputValue);
+                this.chooseList.push(inputValue);
             }
             this.inputVisible = false;
             this.inputValue = "";
         },
         // 删除标签
         handleClose(tag) {
-            this.dynamicTags.splice(this.dynamicTags.indexOf(tag), 1);
+            this.chooseList.splice(this.chooseList.indexOf(tag), 1);
         },
         /**
          *  关闭弹窗
@@ -555,14 +581,30 @@ export default {
         // 信息点
         .info-point {
             flex: 1;
+            max-height: 300px;
             overflow: auto;
-            .instantaneous {
-                margin-bottom: 15px;
-            }
-            .accumulative {
+            .header {
+                border-left: none;
+                height: auto;
+                margin: 0;
+                padding: 20px 0 15px 0;
+                position: sticky;
+                top: 0;
+                background-color: #fff;
+                z-index: 100;
+                div {
+                    border-left: 2px solid #0091ff;
+                    // height: 22px;
+
+                    padding-left: 5px;
+                    font-size: 16px;
+                    font-weight: 500;
+                    color: #1f2329;
+                    line-height: 22px;
+                }
             }
         }
-        // 瞬时状态,累计指标
+        // 瞬时状态,累计指标
         .title {
             margin-bottom: 15px;
             font-weight: 500;
@@ -570,11 +612,22 @@ export default {
             font-size: 14px;
         }
         .m-check-group {
-            max-height: 90px;
+            // max-height: 90px;
+            margin-bottom: 5px;
             overflow: auto;
             .el-checkbox {
                 width: 150px;
                 height: 30px;
+                .el-checkbox__input {
+                    vertical-align: initial;
+                }
+                .el-checkbox__label {
+                    width: 120px;
+                    line-height: 1;
+                    overflow: hidden;
+                    white-space: nowrap;
+                    text-overflow: ellipsis;
+                }
                 // color: #1f2429;
                 // font-size: 14px;
                 // font-weight: 400;

+ 34 - 4
src/views/editer.vue

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