master
parent
5b624f9870
commit
f7770190cd
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,9 @@
|
||||
<template>
|
||||
<router-view />
|
||||
</template>
|
||||
|
||||
<script>
|
||||
</script>
|
||||
|
||||
<style>
|
||||
</style>
|
||||
@ -0,0 +1,46 @@
|
||||
<template>
|
||||
<div style="padding: 0 20px">
|
||||
|
||||
<div ref="lxHeader">
|
||||
<lx-header icon="md-apps" text="业务统计" style="margin-bottom: 10px; border: 0px; margin-top: 15px">
|
||||
</lx-header>
|
||||
</div>
|
||||
<div class="wrap" :style="{'height':mapHeight+'px'}">
|
||||
<echartsLine ref="echartsLine1" :rotate="60" :color="['#147d38','#333']" :lineDataX='monthX' :lineDataY='monthY'></echartsLine>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import echartsLine from "@/views/jsc/components/echartsLine.vue";
|
||||
export default {
|
||||
components: {
|
||||
echartsLine
|
||||
},
|
||||
data(){
|
||||
return{
|
||||
mapHeight:0,
|
||||
monthX: ['残疾人证', '自主创业', '经营场地', '教育专项', '励志奖学金', '燃油补贴', '健康体检', '托养', '无障碍改造', '康复设备', '社区康复', '辅具适配','儿童康复','免费用药'],
|
||||
monthY: [5, 6, 7, 8, 9, 10, 12, 5, 6, 7, 8, 9,7,2],
|
||||
}
|
||||
|
||||
},
|
||||
created(){
|
||||
this.initHeight()
|
||||
},
|
||||
methods: {
|
||||
initHeight() {
|
||||
let winHeight = document.body.clientHeight
|
||||
this.mapHeight = winHeight - 50 - 20
|
||||
console.log(winHeight)
|
||||
},
|
||||
},
|
||||
|
||||
}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
.wrap{
|
||||
width:100%;
|
||||
}
|
||||
</style>
|
||||
@ -0,0 +1,46 @@
|
||||
<template>
|
||||
<div style="padding: 0 20px">
|
||||
|
||||
<div ref="lxHeader">
|
||||
<lx-header icon="md-apps" text="档案统计" style="margin-bottom: 10px; border: 0px; margin-top: 15px">
|
||||
</lx-header>
|
||||
</div>
|
||||
<div class="wrap" :style="{'height':mapHeight+'px'}">
|
||||
<echartsLine ref="echartsLine1" :rotate="60" :color="['#147d38','#333']" :lineDataX='monthX' :lineDataY='monthY'></echartsLine>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import echartsLine from "@/views/jsc/components/echartsLine.vue";
|
||||
export default {
|
||||
components: {
|
||||
echartsLine
|
||||
},
|
||||
data(){
|
||||
return{
|
||||
mapHeight:0,
|
||||
monthX: ['一月', '二月', '三月', '四月', '五月', '六月', '七月', '八月', '九月', '十月', '十一月', '十二月'],
|
||||
monthY: [5, 6, 7, 8, 9, 10, 12, 5, 6, 7, 8, 9],
|
||||
}
|
||||
|
||||
},
|
||||
created(){
|
||||
this.initHeight()
|
||||
},
|
||||
methods: {
|
||||
initHeight() {
|
||||
let winHeight = document.body.clientHeight
|
||||
this.mapHeight = winHeight - 50 - 20
|
||||
console.log(winHeight)
|
||||
},
|
||||
},
|
||||
|
||||
}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
.wrap{
|
||||
width:100%;
|
||||
}
|
||||
</style>
|
||||
@ -1,8 +1,9 @@
|
||||
<template>
|
||||
<router-view />
|
||||
</template>
|
||||
|
||||
<script>
|
||||
</script>
|
||||
|
||||
<style>
|
||||
</style>
|
||||
</style>
|
||||
|
||||
Loading…
Reference in new issue