工作台:中间

This commit is contained in:
guoyue 2022-06-30 10:51:16 +08:00
parent 6125962265
commit 729681a785
5 changed files with 71 additions and 4 deletions

View File

@ -1,11 +1,12 @@
<template> <template>
<div class="bottom-view"> <div class="bottom-view">
</div> </div>
</template> </template>
<script> <script>
import FrequencyTop5View from './frequency-top5-view.vue';
export default { export default {
components: { FrequencyTop5View }
} }
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>

View File

@ -1,19 +1,32 @@
<template> <template>
<div class="center-view"> <div class="center-view">
<!-- 频率 -->
<frequency-top-5-view></frequency-top-5-view>
<!-- 趋势 -->
<trend-view></trend-view>
<!-- 风险 -->
<risk-view></risk-view>
</div> </div>
</template> </template>
<script> <script>
import frequencyTop5View from './frequency-top5-view.vue'
import RiskView from './risk-view.vue'
import TrendView from './trend-view.vue'
export default { export default {
components: { frequencyTop5View, TrendView, RiskView },
} }
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.center-view { .center-view {
width: 100%; width: 100%;
height: 335px; height: 335px;
margin-bottom: 16px; margin-bottom: 16px;
background: blue;
box-sizing: border-box; box-sizing: border-box;
display: flex;
align-items: center;
justify-content: center;
} }
</style> </style>

View File

@ -0,0 +1,18 @@
<template>
<div class="frequency">
555
</div>
</template>
<script>
export default {
}
</script>
<style lang="scss" scoped>
.frequency {
width: 540px;
height: 335px;
background: pink;
margin-right: 4px;
}
</style>

View File

@ -0,0 +1,17 @@
<template>
<div class="risk">
555
</div>
</template>
<script>
export default {
}
</script>
<style lang="scss" scoped>
.risk {
width: 540px;
height: 335px;
background: pink;
}
</style>

View File

@ -0,0 +1,18 @@
<template>
<div class="trend">
趋势
</div>
</template>
<script>
export default {
}
</script>
<style lang="scss" scoped>
.trend {
width: 544px;
height: 335px;
background: pink;
margin-right: 4px;
}
</style>