haojianlong 4 سال پیش
والد
کامیت
2bcf85c067
3فایلهای تغییر یافته به همراه57 افزوده شده و 8 حذف شده
  1. 7 2
      src/styles/index.scss
  2. 20 0
      src/views/maintain/space/components/spaceGraph.vue
  3. 30 6
      src/views/maintain/space/index.vue

+ 7 - 2
src/styles/index.scss

@@ -13,7 +13,6 @@ body {
     font-size: 14px;
 }
 
-
 #app {
     height: 100%;
 }
@@ -78,8 +77,14 @@ div:focus {
 
 .el-scrollbar {
     height: 100%;
-
     .el-scrollbar__view {
         height: 100%;
     }
 }
+
+canvas {
+    outline: none;
+    &:focus {
+        outline: none;
+    }
+}

+ 20 - 0
src/views/maintain/space/components/spaceGraph.vue

@@ -0,0 +1,20 @@
+<template>
+    <div id="graphContainer" ref="graphContainer">
+        <canvas id="spaceCanvas" :width="canvasWidth" :height="canvasHeight" tabindex="0"></canvas>
+    </div>
+</template>
+<script lang="ts">
+import Vue from "vue";
+export default class extends Vue {
+    canvasWidth = 800;
+    canvasHeight = 800;
+    mounted() {
+        console.log(this.$refs.graphContainer);
+
+        this.canvasWidth = this.$refs.graphContainer.offsetWidth - 20;
+        this.canvasHeight = this.$refs.graphContainer.offsetHeight - 20;
+    }
+}
+</script>
+<style lang="scss">
+</style>

+ 30 - 6
src/views/maintain/space/index.vue

@@ -9,8 +9,8 @@
             </el-tabs>
             <div class="tab-content">
                 <div class="search">
-                    <el-cascader v-model="value" :options="options" @change="handleChange" placeholder="请选择楼层" class="item"></el-cascader>
-                    <el-cascader v-model="value" :options="options" @change="handleChange" placeholder="请选择分区" class="item"
+                    <el-cascader v-model="value1" :options="options" @change="handleChange" placeholder="请选择楼层" class="item"></el-cascader>
+                    <el-cascader v-model="value2" :options="options" @change="handleChange" placeholder="请选择分区" class="item"
                         v-if="activeName==='picture'"></el-cascader>
                     <admSearch @SearchValue="searchValue" class="item" v-if="activeName==='table'" />
                 </div>
@@ -18,6 +18,7 @@
                     <admMultiTable />
                 </div>
                 <div class="graph" v-if="activeName==='picture'">
+                    <spaceGraph />
                 </div>
             </div>
         </div>
@@ -28,9 +29,10 @@
 import { Vue, Component, Watch } from "vue-property-decorator";
 import Bus from "@/utils/bus";
 import { Statistics, AdmSearch, AdmMultiTable } from "../components/index";
+import spaceGraph from "./components/spaceGraph";
 @Component({
     name: "space-index",
-    components: { Statistics, AdmSearch, AdmMultiTable },
+    components: { Statistics, AdmSearch, AdmMultiTable, spaceGraph },
 })
 export default class extends Vue {
     private statisticsMsg = {
@@ -38,10 +40,32 @@ export default class extends Vue {
         total: 93640,
     };
     activeName = "table";
-    value: "";
-    options = [];
+    value1: ["zhinan", "shejiyuanze"];
+    value2: [];
+    options = [
+        {
+            value: "zhinan",
+            label: "指南",
+            children: [
+                {
+                    value: "shejiyuanze",
+                    label: "设计原则",
+                },
+                {
+                    value: "yizhi",
+                    label: "一致",
+                },
+                {
+                    value: "fankui",
+                    label: "反馈",
+                },
+            ],
+        },
+    ];
     // 建筑楼层更改
-    handleChange() {}
+    handleChange(v) {
+        console.log(v);
+    }
     // 搜索
     searchValue(val: string) {
         console.log(val);