yunxing před 4 roky
rodič
revize
b217ff2675

+ 13 - 4
src/api/datacenter.ts

@@ -1,10 +1,19 @@
 /**
  * 数据中台通用接口文档
  */
-import httputils from '@/api/httputils'
-const baseApi = '/datacenter2';
+import httputils from "@/api/httputils";
+const baseApi = "/datacenter4";
 
 // 查询建筑信息
 export function buildingQuery(postParams: any): any {
-    return httputils.postJson(`${baseApi}/object/building/query`, postParams)
-}
+    return httputils.postJson(`${baseApi}/object/building/query`, postParams);
+}
+// 查询项目下类型的信息点-->编辑器 空间功能类型 列表-->自己转成树
+
+export function dictQuery(postParams: any): any {
+    // postParams:{
+    // "filters": "code='roomFuncType'",
+    // "type": "GeneralZone"
+    // }
+    return httputils.postJson(`${baseApi}/dict/query`, postParams);
+}

+ 0 - 19
src/api/datacenter4.ts

@@ -1,19 +0,0 @@
-/**
- * 数据中台通用接口文档
- */
-import httputils from "@/api/httputils";
-const baseApi = "/datacenter4";
-
-// 查询建筑信息
-export function buildingQuery(postParams: any): any {
-    return httputils.postJson(`${baseApi}/object/building/query`, postParams);
-}
-// 查询项目下类型的信息点-->编辑器 空间功能类型 树
-
-export function dictQuery(postParams: any): any {
-    // postParams:{
-    // "filters": "code='roomFuncType'",
-    // "type": "GeneralZone"
-    // }
-    return httputils.postJson(`${baseApi}/dict/query`, postParams);
-}

+ 1 - 1
src/api/equipcomponent4.ts

@@ -2,7 +2,7 @@
  * 数据中台专用接口文档
  */
 import httputils from "@/api/httputils";
-const baseApi = "/equip-componet4";
+const baseApi = "/equip-component4";
 
 // 查询项目下所有的设备类型 --> 编辑器 添加设备 设备实例范围树
 export function categoryQuery(postParams: any): any {

+ 0 - 5
src/api/equipcomponnet.ts

@@ -1,5 +0,0 @@
-/**
- * 数据中台专用接口文档
- */
-import httputils from '@/api/httputils'
-const baseApi = '/equip-componet2';

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

@@ -20,7 +20,7 @@
                 </template>
             </SidebarCustom>
         </div>
-        <info-point/>
+        <edit-info-point type='equipment'/>
     </div>
 </template>
 <script>
@@ -59,9 +59,9 @@ const leftData = [
 import { SidebarCustom } from "meri-design";
 import legendList from "./leftToolBar/legendList.vue";
 import { mapMutations } from "vuex";
-import infoPoint from './leftToolBar/editInfoPoint'
+import editInfoPoint from './leftToolBar/editInfoPoint'
 export default {
-    components: { legendList, SidebarCustom ,infoPoint},
+    components: { legendList, SidebarCustom ,editInfoPoint},
     data() {
         return {
             chiceStatus: -1, //选中按钮状态

+ 64 - 19
src/components/editview/leftToolBar/addEquipmentDialog.vue

@@ -38,7 +38,7 @@
             />
             <span class="text2">选择空间:</span>
             <!-- 空间分区类型 树 -->
-            <TreeSelect
+            <!-- <TreeSelect
                 title="已选项"
                 unit="个"
                 placeholder="请选择"
@@ -53,6 +53,16 @@
                 :data="dataTree2"
                 @change="treeChange2"
                 @focusChange="focusChange2"
+            /> -->
+            <Select
+                width="220"
+                tipPlace="top"
+                multiple
+                caption="分区类型:"
+                @confirm="spacePartitionTypeConfirm"
+                v-model="spacePartitionType"
+                :selectdata="spacePartitionTypeData"
+                :placeholder="'请选择'"
             />
             <!-- 空间 分区下实例 菜单 -->
             <Select
@@ -61,7 +71,7 @@
                 multiple
                 caption="分区下实例:"
                 @confirm="selectConfirm"
-                :disabled="!curentSelectTree2.length"
+                :disabled="!spacePartitionType.length"
                 v-model="spacePartitionInstance"
                 :selectdata="selectData"
                 :placeholder="'请选择'"
@@ -79,6 +89,7 @@
                 :isShowAllChoice="true"
                 :selectedIds="selectedIds3"
                 :choseArea="true"
+                :disabled="!spacePartitionType.length"
                 :data="dataTree3"
                 @change="treeChange3"
                 @focusChange="focusChange3"
@@ -111,7 +122,7 @@
             <el-button @click="close">取 消</el-button>
             <el-button :disabled="!tableData.length" :type="tableData.length ? 'primary' : 'info'" @click="confirm">确 定</el-button>
         </div>
-        <edit-info-point @closeModal="showEditInfoPoint = false" :showDialog="showEditInfoPoint" />
+        <edit-info-point type="equipment" @closeModal="showEditInfoPoint = false" :showDialog="showEditInfoPoint" />
     </el-dialog>
 </template>
 <script>
@@ -121,8 +132,9 @@
 import editInfoPoint from "./editInfoPoint";
 import { Select, TreeSelect } from "meri-design";
 import { cloneDeep } from "lodash";
-import { dictQuery } from "@/api/datacenter4";
-import { categoryQuery, typeQuery } from "@/api/equipcomponent4";
+import { dictQuery } from "@/api/datacenter";
+import { categoryQuery, typeQuery } from "@/api/equipcomponent";
+import { array2Tree } from "@/utils/utils";
 const dataTree = [
     {
         id: "0",
@@ -175,7 +187,7 @@ export default {
         return {
             timer: null,
             showPopover: false, //选择设备 popover是否显示
-            dataTree1: cloneDeep(dataTree),
+            dataTree1: [],
             dataTree2: cloneDeep(dataTree),
             dataTree3: cloneDeep(dataTree),
             selectedIds1: [],
@@ -183,6 +195,8 @@ export default {
             selectedIds3: [],
             curentSelectTree1: [], //选中的设备 实例范围
             curentSelectTree2: [], //选中的空间 分区类型
+            spacePartitionType: [],
+            spacePartitionTypeData: [],
             curentSelectTree3: [], //选中的空间 功能类型
             dialogTableVisible: false,
             spacePartitionInstance: "", //选中的空间分区下实例
@@ -191,10 +205,6 @@ export default {
                 { id: "test2", name: "单平米" },
                 { id: "test3", name: "下级分项" },
                 { id: "test4", name: "4444444" },
-                { id: "test5", name: "555555555" },
-                { id: "test6", name: "66666666666" },
-                { id: "test7", name: "6666" },
-                { id: "test8", name: "6" },
             ],
             tableData: [
                 {
@@ -243,7 +253,9 @@ export default {
         },
     },
     created() {},
-    async mounted() {},
+    async mounted() {
+        // window.vm = this;
+    },
     methods: {
         /**
          * 设备实例范围树更改
@@ -272,6 +284,10 @@ export default {
                 this.curentSelectTree2 = dataObj.filter((v) => v.name.split("/").length === 2).map((v) => v.id);
             }
         },
+        spacePartitionTypeConfirm(data) {
+            console.log(data);
+            console.log(this.spacePartitionType);
+        },
         /**
          * 空间 分区下实例
          */
@@ -303,18 +319,47 @@ export default {
             this.showPopover = false;
             // this.tableData = []; //TODO:
             // 没有tableData,显示popover
-            !this.tableData.length &&
-                (this.timer = setTimeout(() => {
+            if (!this.tableData.length) {
+                this.timer = setTimeout(() => {
                     this.showPopover = true;
-                }, 1000));
-            let res1 = await categoryQuery({});
-            let res2 = await typeQuery({});
-
-            let res3 = await dictQuery({
+                }, 1000);
+            }
+            // 查询设备实例树
+            this.getCategory();
+            // 分区类型 列表
+            this.getType();
+            this.getDict();
+        },
+        /**
+         * 查询设备实例树
+         */
+        async getCategory() {
+            let res = await categoryQuery({});
+            console.log(res);
+            let tree = res?.content || [];
+            tree.map((v) => (v.id = v.code));
+            this.dataTree1 = tree;
+        },
+        /**
+         * 空间分区类型 列表
+         */
+        async getType() {
+            let res = await typeQuery({});
+            let data = res?.content || [];
+            data.map((v) => (v.id = v.code));
+            //  name,code-->    { id: "test1", name: "选择项" },
+            this.spacePartitionTypeData = data;
+        },
+        // 空间功能类型
+        async getDict() {
+            let res = await dictQuery({
                 filters: "code='roomFuncType'",
                 type: "GeneralZone",
             });
-            console.log(JSON.stringify(res3,null,2))
+            let data = res?.content[0]?.dataSource || [];
+            data.map((v) => (v.id = v.code));
+            // 构造树
+            this.dataTree3 = array2Tree(data, "parentCode");
         },
         /**
          * 合并第一行

+ 70 - 5
src/components/editview/leftToolBar/editInfoPoint.vue

@@ -1,4 +1,4 @@
-<!-- 编辑信息点页面 -->
+<!-- 编辑信息点页面,添加设备,设备组,空间 三个共用 -->
 <template>
     <el-dialog
         custom-class="edit-info-point-dialog"
@@ -14,12 +14,18 @@
         </div>
 
         <!-- 信息点 -->
-        <div class="info-point-tab" v-if="tab === 0">
+        <div class="info-point-tab" v-show="tab === 0">
             <!-- 公式 -->
             <div class="formula">
                 <div class="header">公式</div>
                 <div class="tag-container">
-                    <el-tag :key="tag" v-for="tag in dynamicTags" closable :disable-transitions="false" @close="handleClose(tag)">
+                    <el-tag
+                        :key="`${index}_${tag}`"
+                        v-for="(tag, index) in dynamicTags"
+                        closable
+                        :disable-transitions="false"
+                        @close="handleClose(tag)"
+                    >
                         {{ tag }}
                     </el-tag>
                     <el-input
@@ -55,7 +61,23 @@
         </div>
 
         <!-- 属性 -->
-        <div class="property-tab" v-else-if="tab === 1"></div>
+        <div class="property-tab" v-show="tab === 1">
+            <div class="equipment" v-if="type === 'equipment'">
+                <div class="color">
+                    <p>字符颜色</p>
+                    <div class="color-select">
+                        <el-color-picker show-alpha @change="changeColor" class="fix-box-1" v-model="color"></el-color-picker>
+                    </div>
+                </div>
+                <div class="size">
+                    <p>字符大小</p>
+                    <el-input></el-input>
+                </div>
+                <div class="icon">
+                    <p>显示图标</p>
+                </div>
+            </div>
+        </div>
         <!-- 确定,取消按钮 -->
         <div slot="footer" class="dialog-footer">
             <el-button @click="close">取 消</el-button>
@@ -66,6 +88,7 @@
 <script>
 /**
  * 编辑信息点页面
+ * 添加设备,设备组,空间 三个共用
  */
 import { cloneDeep } from "lodash";
 const list = [
@@ -92,13 +115,18 @@ export default {
             type: Boolean,
             required: true,
         },
+        // 类型, equipment 设备, equipmentGroup 设备组, space 空间
+        type: {
+            type: String,
+            required: true,
+        },
     },
     components: {},
     data() {
         return {
             dialogVisible: true,
             tab: 0,
-            dynamicTags: [1, 2, 3, 4, 555, 234],
+            dynamicTags: Array(10).fill(123),
             inputVisible: false,
             inputValue: null,
 
@@ -108,6 +136,9 @@ export default {
             // 累计指标列表
             accumulativeCheckList: [],
             accumulativeList: cloneDeep(list),
+            /** -------------------设备属性使用值start-------------------------- */
+            color: "",
+            /** -------------------设备属性使用值end-------------------------- */
         };
     },
     watch: {
@@ -159,6 +190,14 @@ export default {
             this.dialogVisible = false;
             this.$emit("closeModal");
         },
+        /**
+         * 属性
+         */
+        /** ----------设备的属性---------- */
+        // 改变颜色
+        changeColor(val) {
+            console.log("changeColor: ", val);
+        },
     },
 };
 </script>
@@ -224,6 +263,7 @@ export default {
                 border: 1px solid #e4e5e7;
                 padding: 7px 12px;
                 line-height: 1;
+                overflow: auto;
                 .el-tag {
                     background: #eff0f1;
                     border-radius: 2px;
@@ -288,6 +328,31 @@ export default {
     }
     // 属性tab
     .property-tab {
+        margin-bottom: 20px;
+        // 设备样式
+        .equipment {
+            & > div {
+                margin-bottom: 15px;
+                font-size: 12px;
+                color: #8d9399;
+                line-height: 16px;
+                .color-select {
+                    width: 32px;
+                    height: 20px;
+                    overflow: hidden;
+                    position: relative;
+                    margin: 4px 0;
+                    .fix-box-1 {
+                        margin-top: -8px;
+                        margin-left: -8px;
+                        /deep/ .el-color-picker__trigger {
+                            width: 200px;
+                            height: 200px;
+                        }
+                    }
+                }
+            }
+        }
     }
 }
 </style>

+ 24 - 0
src/utils/utils.js

@@ -0,0 +1,24 @@
+/**
+ *
+ * @param {Array} arr 转换成树的数组
+ * @param {String} parentId 父id字段名
+ * @param {String} id id名称,默认为"id"
+ */
+function array2Tree(arr, parentId, id = "id") {
+    if (!Array.isArray(arr) || !arr.length) throw new Error("请传入数组");
+    if (!parentId || typeof parentId !== "string") throw new Error("请传入 父id 字段名称");
+    let map = {};
+    arr.map((item) => (map[item[id]] = item));
+    let roots = [];
+    arr.map((item) => {
+        const parent = map[item[parentId]];
+        if (parent) {
+            (parent.children || (parent.children = [])).push(item);
+        } else {
+            roots.push(item);
+        }
+    });
+    map = null;
+    return roots;
+}
+export { array2Tree };