Browse Source

Merge branch 'master' of git.sagacloud.cn:web/wanda-adm

zhangyu 4 years ago
parent
commit
dbc5883d5e

+ 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 - 0
src/store/modules/app.ts

@@ -33,6 +33,9 @@ class App extends VuexModule implements IAppState {
     public uploaderList: any[] = [];
     public device = DeviceType.Desktop;
 
+    // 文件服务器基础路径-下载文件
+    mapBaseUrl = '/image-service/common/file_get?systemId=revit&key='
+
     @Mutation
     private TOGGLE_SIDEBAR(withoutAnimation: boolean) {
         this.sidebar.opened = !this.sidebar.opened;

+ 41 - 0
src/utils/graph/LocationScene.ts

@@ -0,0 +1,41 @@
+import { SMouseButton, SMouseEvent } from "@persagy-web/base/lib";
+import { FloorScene } from "./FloorScene";
+import { MarkerItem } from "./MarkItem";
+
+/**
+ * 维护设备位置
+*/
+export class LocationScene extends FloorScene {
+    markList: MarkerItem[] = [];
+    marking: boolean = true;
+
+    onMouseDown(event: SMouseEvent): boolean {
+        console.log(event);
+        if (this.marking && event.buttons == SMouseButton.LeftButton) {
+            this.clearMark();
+            this.addMarker({ x: event.x, y: event.y })
+        }
+        return super.onMouseDown(event)
+    }
+
+    clearMark(): void {
+        this.markList.forEach(t => {
+            this.removeItem(t)
+        })
+        this.markList = [];
+        this.view!!.update()
+    }
+
+    /**
+     * 添加标志到scene中
+     *
+     * @param   marker  标志对象
+     */
+    addMarker(marker: any): void {
+        let mark = new MarkerItem(null, marker);
+        mark.selectable = true
+        mark.moveTo(marker.x, marker.y);
+        this.markList.push(mark);
+        this.addItem(mark);
+    } // Function addMarker()
+}

File diff suppressed because it is too large
+ 74 - 0
src/utils/graph/MarkItem.ts


BIN
src/utils/graph/img/mark.png


+ 224 - 0
src/views/maintain/device/components/deviceGraph.vue

@@ -0,0 +1,224 @@
+<template>
+    <div id="deviceGraph">
+        <div>
+            <i class="iconfont icon-fanhui" @click="goBack"></i>
+            <el-cascader clearable ref="graphCascader" placeholder="请选择建筑楼层" :options="graphOptions" v-model="graphBuilding" filterable size="small"
+                @change="changeGraphCascader" style="margin-left: 12px" :props="graphProps"></el-cascader>
+        </div>
+        <div class="graphContainer" ref="graphContainer">
+            <div v-show="floorKey" v-loading="canvasLoading">
+                <canvas id="deviceCanvas" :width="canvasWidth" :height="canvasHeight" tabindex="0"></canvas>
+            </div>
+            <div v-show="!floorKey">
+                <p style="text-align:center;padding-top: 220px;">
+                    暂无数据
+                </p>
+            </div>
+        </div>
+    </div>
+</template>
+<script lang="ts">
+import { Vue, Component, Watch, Prop, Emit } from "vue-property-decorator";
+import { FloorView } from "@/utils/graph/FloorView";
+import { LocationScene } from "@/utils/graph/LocationScene";
+import { SObject } from "@persagy-web/base/lib";
+import { buildingQuery } from "@/api/datacenter";
+import { AppModule } from "@/store/modules/app";
+@Component({
+    components: {},
+})
+export default class deviceGraph extends Vue {
+    @Prop({
+        type: Object,
+        default: () => {
+            return {};
+        },
+    })
+    equip?: any;
+
+    canvasWidth = 800;
+    canvasHeight = 800;
+    view: FloorView | null = null;
+    scene: LocationScene | null = null;
+    floorKey = "";
+    canvasLoading = false;
+    graphProps = {
+        label: "localName",
+        value: "id",
+        children: "floor",
+    };
+    graphOptions = [];
+    graphBuilding = [];
+    floorToMap = {};
+    floor = {};
+    hasLocation = false;
+
+    get mapBaseUrl() {
+        return AppModule.mapBaseUrl;
+    }
+
+    created() {
+        this.getFloor();
+    }
+    // 挂载
+    mounted(): void {
+        this.canvasWidth = this.$refs.graphContainer.offsetWidth;
+        this.canvasHeight = this.$refs.graphContainer.offsetHeight;
+    }
+    // 设置设备默认位置
+    initDeviceLocation() {
+        if (this.equip && this.equip.buildingId && this.equip.floorId) {
+            this.graphBuilding = [this.equip.buildingId, this.equip.floorId];
+            this.changeGraphCascader(this.graphBuilding, true);
+        }
+    }
+    getFloor() {
+        const pa = {
+            pageSize: 1000,
+            orders: "localName asc",
+            cascade: [{ name: "floor", orders: "floorSequenceId desc" }],
+        };
+        buildingQuery(pa).then((res) => {
+            this.floorToMap = {};
+            try {
+                this.graphOptions = res.content.map((t) => {
+                    if (!t.floor) {
+                        t.floor = [];
+                    }
+                    t.floor.forEach((floor) => {
+                        this.floorToMap[floor.id] = floor;
+                    });
+                    return t;
+                });
+            } catch (err) {
+                this.graphOptions = [];
+            }
+            this.initDeviceLocation();
+        });
+    }
+    changeGraphCascader(val: [], flag = false) {
+        this.hasLocation = flag;
+        if (
+            this.graphBuilding.length > 1 &&
+            this.floorToMap[this.graphBuilding[1]]
+        ) {
+            this.getData(this.floorToMap[this.graphBuilding[1]]);
+        } else {
+            this.noMap();
+        }
+    }
+    getData(floor: any) {
+        this.canvasLoading = true;
+        if (floor.infos && floor.infos.floorMap) {
+            this.floor = floor;
+            const url = this.mapBaseUrl + floor.infos.floorMap;
+            if (url != this.floorKey) {
+                this.floorKey = this.mapBaseUrl + floor.infos.floorMap;
+                this.getGraph();
+            }
+        } else {
+            this.noMap();
+        }
+    }
+    getGraph() {
+        const scene = new LocationScene();
+        this.canvasLoading = true;
+        this.clearGraphy();
+        this.scene = null;
+        scene.loadUrl(this.floorKey).then((res) => {
+            if (this.view) {
+                this.view.scene = scene;
+            }
+            this.scene = scene;
+            this.getGraphSuc(res);
+        });
+    }
+    // 获取底图成功
+    getGraphSuc(res: any): void {
+        this.canvasLoading = false;
+        if (res == "error") {
+            this.noMap();
+            this.$message.warning("数据解析异常");
+            return;
+        }
+        if (this.view) {
+            this.view.fitSceneToView();
+            this.view.minScale = this.view.scale;
+        }
+        if (this.$refs.canvasFun) {
+            // @ts-ignore
+            this.$refs.canvasFun.everyScale = this.view.scale;
+        }
+        if (this.scene) {
+            this.scene.isSpaceSelectable = false;
+        }
+        if (this.hasLocation) {
+            this.resetLocation();
+        }
+        this.canvasLoading = false;
+    }
+    noMap() {
+        this.floorKey = "";
+        this.canvasLoading = false;
+    }
+    // 清除canvas
+    clearGraphy() {
+        if (this.view) {
+            this.view.scene = null;
+            return;
+        }
+        this.view = new FloorView("deviceCanvas");
+    }
+    // 保存
+    getLocation() {
+        const arr = this.scene?.markList || [];
+        if (arr.length) {
+            const obj = {
+                x: arr[0].x | 0,
+                y: -arr[0].y | 0,
+                z: 0,
+                buildingId: this.graphBuilding[0],
+                floorId: this.graphBuilding[1],
+            }
+            if (
+                this.equip &&
+                this.equip.locationJson &&
+                this.equip.locationJson.z
+            ) {
+                obj.z = this.equip.locationJson.z;
+            }
+            return obj;
+        }
+        return undefined;
+    }
+    // 重置
+    resetLocation() {
+        this.scene?.clearMark();
+        if (this.equip.locationJson && this.scene) {
+            this.scene.addMarker({
+                x: this.equip.locationJson.x,
+                y: -this.equip.locationJson.y,
+            });
+        }
+    }
+    // 返回
+    @Emit("goBack")
+    goBack() {
+        return;
+    }
+}
+</script>
+<style lang="scss">
+#deviceGraph {
+    min-width: 800px;
+    height: 440px;
+    .graphContainer {
+        width: 100%;
+        overflow: hidden;
+        height: calc(100% - 4px);
+        canvas {
+            margin: 0 auto;
+        }
+    }
+}
+</style>

+ 92 - 14
src/views/maintain/device/index.vue

@@ -54,11 +54,11 @@
                         <el-button type="primary" class="fr" @click="handleNext">下一步</el-button>
                     </template>
                     <template v-else-if="displayLocation && deviceVal">
-                        <div class="dialog-button">
-                            <el-button type="primary">保存</el-button>
-                            <el-button type="default">取消</el-button>
-                            <el-button type="default">重置</el-button>
-                        </div>
+                        <deviceGraph ref="deviceGraph" :equip="curEquip" @goBack="goBack"/>
+                        <span slot="footer" class="dialog-footer">
+                            <el-button type="primary" @click="saveLocation">确定</el-button>
+                            <el-button type="default" @click="resetLocation">重置</el-button>
+                        </span>
                     </template>
                     <template v-else>
                         <div>
@@ -71,12 +71,12 @@
                     </template>
                 </template>
                 <template v-else>
-                    <template v-if="maintain == '维护'">
-                        <div class="dialog-button">
-                            <el-button type="primary">保存</el-button>
-                            <el-button type="default">取消</el-button>
-                            <el-button type="default">重置</el-button>
-                        </div>
+                    <template v-if="displayLocation && deviceVal">
+                        <deviceGraph ref="deviceGraph" :equip="curEquip" @goBack="goBack"/>
+                        <span slot="footer" class="dialog-footer">
+                            <el-button type="primary" @click="saveLocation">确定</el-button>
+                            <el-button type="default" @click="resetLocation">重置</el-button>
+                        </span>
                     </template>
                     <template v-else>
 
@@ -98,14 +98,15 @@
 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"
 
 
 @Component({
     name: 'adm-device',
-    components: { Statistics, AdmSearch, AdmMultiTable, Pagination, dataForm }
+    components: { Statistics, AdmSearch, AdmMultiTable, Pagination, dataForm, deviceGraph }
 })
 export default class extends Vue {
 
@@ -168,6 +169,8 @@ export default class extends Vue {
     status = '添加'
     // 维护位置开关
     maintain = ''
+    // 传到维护位置的设备信息
+    curEquip = {}
 
     // 项目id
     get projectId(): string {
@@ -370,17 +373,27 @@ export default class extends Vue {
     addDevice() {
         this.status = '添加'
         this.dialogVisible = true
+        this.currRowContent = {}
     }
 
 
     // 维护位置
     handlePosition() {
+        this.curEquip = tools.formatData(this.$refs.dataForm.form)
         this.displayLocation = true
     }
 
     // 添加 事件处理
     handleDataForm() {
-        console.log(this.$refs.dataForm.form)
+        const eq = tools.formatData(this.$refs.dataForm.form);
+        if (eq.id) { 
+            //更新
+            this.handleUpdateEquip(eq);
+        } else {
+            eq.classCode = this.deviceVal[1]
+            // 创建
+            this.handleCreateEquip(eq);
+        }
     }
 
     // 编辑当前行
@@ -402,6 +415,71 @@ export default class extends Vue {
         this.displayLocation = false
     }
 
+    // 取消
+    cancelLocation() {
+        // @ts-ignore
+        this.$refs.deviceGraph.cancelLocation()
+    }
+    // 保存
+    saveLocation() {
+        // @ts-ignore
+        const data = this.$refs.deviceGraph.getLocation()
+        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() {
+        // @ts-ignore
+        this.$refs.deviceGraph.resetLocation()
+    }
+    // 返回
+    goBack() {
+        this.displayLocation = false
+    }
+
     @Watch("deviceType", { immediate: true, deep: true })
     handleDeviceMsg() {
         this.deviceVal = this.deviceType

+ 7 - 2
src/views/maintain/space/components/spaceGraph.vue

@@ -82,6 +82,7 @@ import { SObject } from "@persagy-web/base/lib";
 import { ItemColor } from "@persagy-web/big/lib";
 import { SSpaceItem } from "@persagy-web/big/lib/items/floor/SSpaceItem";
 import { SZoneItem } from "@persagy-web/big/lib/items/floor/ZoneItem";
+import { AppModule } from "@/store/modules/app";
 
 @Component({
     components: { canvasFun, createBSP },
@@ -91,7 +92,6 @@ export default class spaceGraph extends Vue {
     canvasHeight = 800;
     view: FloorView | null = null;
     scene: FloorScene | null = null;
-    mapBaseUrl = "/image-service/common/file_get?systemId=revit&key=";
     canvasLoading = false;
     type = 1;
     config = {
@@ -113,6 +113,11 @@ export default class spaceGraph extends Vue {
     BIMIDToSID = {};
     BIMIDToSIName = {};
     sourceIdToISP = {};
+
+    get mapBaseUrl() {
+        return AppModule.mapBaseUrl;
+    }
+
     // 挂载
     mounted(): void {
         this.canvasWidth = this.$refs.graphContainer.offsetWidth;
@@ -120,7 +125,7 @@ export default class spaceGraph extends Vue {
         this.getGraph();
     }
     // 父组件调用查询楼层底图
-    getData(floor, zoneType) {
+    getData(floor: any, zoneType: any) {
         this.curZoneType = zoneType[zoneType.length - 1];
         this.canvasLoading = true;
         if (floor.infos && floor.infos.floorMap) {

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

@@ -110,11 +110,11 @@ export default class spaceIndex extends Vue {
             children: [
                 {
                     value: "FireZone",
-                    label: "防火分区",
+                    label: "防火空间",
                 },
                 {
                     value: "PowerSupplyZone",
-                    label: "供电分区",
+                    label: "供电空间",
                 },
             ],
         },