rt-sim-training-client/src/views/dashboard/index.vue

75 lines
1.2 KiB
Vue
Raw Normal View History

2019-07-02 16:29:52 +08:00
<template>
<div class="dashboard-container">
2019-08-15 08:58:21 +08:00
<div class="item-row" style="margin-top: 20px">
<div class="item-col">
<echarts-lesson id="lesson" ref="lesson" :size="size" />
</div>
<div class="item-col">
<echarts-lesson id="exam" ref="exam" :size="size" />
</div>
</div>
<div class="item-flex">
<echarts-demon id="demon" ref="demon" :size="size" />
</div>
2019-07-02 16:29:52 +08:00
</div>
</template>
<script>
2019-08-14 14:52:21 +08:00
import WindowResizeHandler from '@/mixin/WindowResizeHandler';
2019-08-15 08:58:21 +08:00
import EchartsLesson from './echarts/lesson';
import EchartsDemon from './echarts/demonstration';
2019-07-02 16:29:52 +08:00
export default {
name: 'Dashboard',
2019-08-14 14:52:21 +08:00
components: {
2019-08-15 08:58:21 +08:00
EchartsLesson,
EchartsDemon
2019-08-14 14:52:21 +08:00
},
mixins: [WindowResizeHandler],
data() {
return {
2019-08-15 08:58:21 +08:00
size: {
width: 0,
height: 0
}
2019-08-14 14:52:21 +08:00
};
},
methods: {
resizeHandler() {
2019-08-15 08:58:21 +08:00
this.size = {
width: (this._clientWidth - 60) / 2,
height: (this._clientHeight - 100) / 2
};
2019-08-14 14:52:21 +08:00
}
2019-07-02 16:29:52 +08:00
}
2019-08-13 11:10:55 +08:00
};
2019-07-02 16:29:52 +08:00
</script>
<style lang="scss" scoped>
.dashboard {
&-container {
2019-08-15 08:58:21 +08:00
margin: 0px;
2019-07-02 16:29:52 +08:00
}
&-text {
font-size: 30px;
line-height: 46px;
}
}
2019-08-15 08:58:21 +08:00
.item-col {
display: inline-block;
}
.item-row {
left: 50%;
right: 50%;
text-align: center;
}
.item-flex {
display: flex;
justify-content: center;
}
2019-07-02 16:29:52 +08:00
</style>