Browse Source

pc端统计页面

seyason 1 năm trước cách đây
mục cha
commit
585ebb8770

+ 70 - 0
fhKeeper/formulahousekeeper/timesheet-workshop/src/views/statistic/index.vue

@@ -0,0 +1,70 @@
+<template>
+    <section>
+        <el-empty>待完善</el-empty>
+    </section>
+</template>
+
+<script>
+// 引入自定义组件
+    import selectCat from "@/components/select.vue"
+    //引入自定义级联组件
+    import vueCascader from "@/components/cascader.vue"
+
+    import util from "../../common/js/util";
+    export default {
+        components: {
+            selectCat,
+            vueCascader
+        },
+        data() {
+            return {
+                
+            };
+        },
+        methods: {
+            
+        },
+        created() {
+            this.myChart = null
+        },
+        mounted() {
+            this.containerHeight = window.innerHeight - 200
+            // this.containerHeight = window.innerHeight - 130
+            const that = this;
+            window.onresize = function temp() {
+                this.containerHeight = window.innerHeight - 130
+                // this.containerHeight = window.innerHeight - 200
+            };
+           
+        },
+        beforeDestroy () {
+        },
+    };
+</script>
+
+<style lang="scss" scoped>
+    #container {
+        // display: inline-block;
+        display: block;
+        position: absolute;
+        // width: 100% !important; 
+        margin-top: 60px;
+    } 
+    .ryuans {
+        top: -50px;
+    }
+    .prompt {
+        position: absolute;
+        right: 10px;
+        top: 0;
+    }
+    .poss {
+        position: fixed;
+        bottom: 10px;
+        right: 1%;
+        box-sizing: border-box;
+    }
+</style>
+
+<style lang="scss">
+</style>