浏览代码

维护设备位置

haojianlong 4 年之前
父节点
当前提交
441ea327dc
共有 3 个文件被更改,包括 59 次插入4 次删除
  1. 2 2
      src/api/datacenter.ts
  2. 12 1
      src/views/maintain/device/components/deviceGraph.vue
  3. 45 1
      src/views/maintain/device/index.vue

+ 2 - 2
src/api/datacenter.ts

@@ -42,12 +42,12 @@ export function queryEquip(postParams: any): any {
     return httputils.postJson(`${ baseApi }/object/equip/query`, postParams)
 }
 
-// 查询设备信息
+// 创建设备信息
 export function createEquip(postParams: any): any {
     return httputils.postJson(`${ baseApi }/object/equip/create`, postParams)
 }
 
-// 查询设备信息
+// 更新设备信息
 export function updateEquip(postParams: any): any {
     return httputils.postJson(`${ baseApi }/object/equip/update`, postParams)
 }

+ 12 - 1
src/views/maintain/device/components/deviceGraph.vue

@@ -178,7 +178,18 @@ export default class deviceGraph extends Vue {
     getLocation() {
         const arr = this.scene?.markList || [];
         if (arr.length) {
-            return { x: arr[0].x, y: -arr[0].y };
+            if (
+                this.equip &&
+                this.equip.locationJson &&
+                this.equip.locationJson.z
+            ) {
+                return {
+                    x: arr[0].x | 0,
+                    y: -arr[0].y | 0,
+                    z: this.equip.locationJson.z,
+                };
+            }
+            return { x: arr[0].x, y: -arr[0].y, z: 0, buildingId: this.graphBuilding[0], floorId: this.graphBuilding[1] };
         }
         return undefined;
     }

+ 45 - 1
src/views/maintain/device/index.vue

@@ -415,7 +415,51 @@ export default class extends Vue {
     saveLocation() {
         // @ts-ignore
         const data = this.$refs.deviceGraph.getLocation()
-        console.log(data);
+        if (data) {
+            this.curEquip.bimLocation = `${data.x},${data.y},${data.z}`;
+            this.curEquip.buildingId = data.buildingId;
+            this.curEquip.floorId = data.floorId;
+        }
+        if (this.curEquip.id) { 
+            //更新
+            this.handleUpdateEquip(this.curEquip);
+        } else {
+            this.curEquip.classCode = this.deviceVal[1]
+            // 创建
+            this.handleCreateEquip(this.curEquip);
+        }
+    }
+    // 更新设备
+    handleUpdateEquip(obj) {
+        let pa;
+        if (Array.isArray(obj)) {
+            pa = { content: obj }
+        } else {
+            pa = { content: [obj] }
+        }
+        updateEquip(pa).then(res => {
+            if (res.result == 'success') {
+                this.$message.success('更新成功');
+                this.dialogVisible = false;
+                this.handleChangeDevice()
+            }
+        })
+    }
+    // 创建设备
+    handleCreateEquip(obj: any) {
+        let pa;
+        if (Array.isArray(obj)) {
+            pa = { content: obj }
+        } else {
+            pa = { content: [obj] }
+        }
+        createEquip(pa).then(res => {
+            if (res.result == 'success') {
+                this.$message.success('创建成功');
+                this.dialogVisible = false;
+                this.handleChangeDevice()
+            }
+        })
     }
     // 重置
     resetLocation() {