|
@@ -0,0 +1,215 @@
|
|
|
+<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(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(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.changeSelect = this.changeSelect;
|
|
|
+ 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");
|
|
|
+ }
|
|
|
+ // 点击平面图事件
|
|
|
+ changeSelect(selectContainer: SObject, data: any[]) {
|
|
|
+ console.log(selectContainer);
|
|
|
+ }
|
|
|
+ // 保存
|
|
|
+ getLocation() {
|
|
|
+ const arr = this.scene?.markList || [];
|
|
|
+ if (arr.length) {
|
|
|
+ return { x: arr[0].x, y: -arr[0].y };
|
|
|
+ }
|
|
|
+ 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>
|