5 changed files with 91 additions and 20 deletions
@ -0,0 +1,45 @@ |
|||
<template> |
|||
<div class="flex-wrap"> |
|||
<div class="fill-width mb-3"> |
|||
<a-card style="width: 100%; height: 400px" title="病例统计"> |
|||
<treemap /> |
|||
</a-card> |
|||
</div> |
|||
<div class="fill-width mb-3"> |
|||
<a-card style="width: 100%; height: 400px" title="各院病例分析"> |
|||
<categorymap /> |
|||
</a-card> |
|||
</div> |
|||
<div class="fill-width mb-3"> |
|||
<a-card style="width: 100%; height: 400px" title="每日病例统计"> |
|||
<cisualmap /> |
|||
</a-card> |
|||
</div> |
|||
<div class="fill-width"> |
|||
<a-card style="width: 100%; height: 400px" title="各医院生物样本统计"> |
|||
<piemap /> |
|||
</a-card> |
|||
</div> |
|||
</div> |
|||
</template> |
|||
|
|||
<script> |
|||
import Treemap from 'components/Echarts/Treemap.vue'; |
|||
import Cisualmap from 'components/Echarts/Cisualmap.vue'; |
|||
import Categorymap from 'components/Echarts/Categorymap.vue'; |
|||
import Piemap from 'components/Echarts/Piemap.vue'; |
|||
export default { |
|||
name: 'Index', |
|||
components: { Treemap, Cisualmap, Categorymap, Piemap }, |
|||
data() { |
|||
return { |
|||
str: '', |
|||
showVideo: false, |
|||
}; |
|||
}, |
|||
|
|||
methods: {}, |
|||
}; |
|||
</script> |
|||
|
|||
<style lang="stylus" scoped></style> |
Loading…
Reference in new issue