Browse Source

维护设备位置

haojianlong 4 years ago
parent
commit
7fae64956f

+ 10 - 0
src/api/datacenter.ts

@@ -42,6 +42,16 @@ 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)
+}
+
 // 查询系统信息
 export function querySystem(postParams: any): any {
     return httputils.postJson(`${ baseApi }/object/system/query`, postParams)

+ 3 - 2
src/utils/graph/MarkItem.ts

@@ -37,8 +37,9 @@ export class MarkerItem extends SGraphItem {
         this.zOrder = ItemOrder.markOrder;
         this.Img = new Image();
         this.Img.src = this.imgSource;
-        console.log(this.imgSource);
-        
+        this.Img.onload = () => {
+            this.update()
+        }
         this.isTransform = false;
     } // Constructor
 

+ 3 - 3
src/views/maintain/device/components/deviceGraph.vue

@@ -69,7 +69,7 @@ export default class deviceGraph extends Vue {
     initDeviceLocation() {
         if (this.equip && this.equip.buildingId && this.equip.floorId) {
             this.graphBuilding = [this.equip.buildingId, this.equip.floorId];
-            this.changeGraphCascader(true)
+            this.changeGraphCascader(this.graphBuilding, true);
         }
     }
     getFloor() {
@@ -96,7 +96,7 @@ export default class deviceGraph extends Vue {
             this.initDeviceLocation();
         });
     }
-    changeGraphCascader(flag = false) {
+    changeGraphCascader(val: [], flag = false) {
         this.hasLocation = flag;
         if (
             this.graphBuilding.length > 1 &&
@@ -154,7 +154,7 @@ export default class deviceGraph extends Vue {
             this.scene.isSpaceSelectable = false;
         }
         if (this.hasLocation) {
-            this.resetLocation()
+            this.resetLocation();
         }
         this.canvasLoading = false;
     }

+ 2 - 2
src/views/maintain/device/index.vue

@@ -98,7 +98,7 @@
 import { Component, Vue, Watch } from "vue-property-decorator";
 import { AdmMultiTable, AdmSearch, dataForm, Pagination, Statistics } from '../components/index'
 import { allDevice, BeatchQueryParam, dictInfo } from "@/api/equipComponent";
-import { queryCount, queryEquip } from "@/api/datacenter";
+import { queryCount, queryEquip, createEquip, updateEquip } from "@/api/datacenter";
 import { UserModule } from "@/store/modules/user";
 import deviceGraph from "./components/deviceGraph"
 import tools from "@/utils/maintain"
@@ -378,7 +378,7 @@ export default class extends Vue {
 
     // 维护位置
     handlePosition() {
-        this.curEquip = this.$refs.dataForm.form
+        this.curEquip = tools.formatData(this.$refs.dataForm.form)
         this.displayLocation = true
     }