工作台:中间
This commit is contained in:
parent
6125962265
commit
729681a785
|
@ -4,8 +4,9 @@
|
|||
</div>
|
||||
</template>
|
||||
<script>
|
||||
import FrequencyTop5View from './frequency-top5-view.vue';
|
||||
export default {
|
||||
|
||||
components: { FrequencyTop5View }
|
||||
}
|
||||
</script>
|
||||
<style lang="scss" scoped>
|
||||
|
|
|
@ -1,19 +1,32 @@
|
|||
<template>
|
||||
<div class="center-view">
|
||||
|
||||
<!-- 频率 -->
|
||||
<frequency-top-5-view></frequency-top-5-view>
|
||||
<!-- 趋势 -->
|
||||
<trend-view></trend-view>
|
||||
<!-- 风险 -->
|
||||
<risk-view></risk-view>
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
import frequencyTop5View from './frequency-top5-view.vue'
|
||||
import RiskView from './risk-view.vue'
|
||||
import TrendView from './trend-view.vue'
|
||||
|
||||
export default {
|
||||
components: { frequencyTop5View, TrendView, RiskView },
|
||||
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.center-view {
|
||||
width: 100%;
|
||||
height: 335px;
|
||||
margin-bottom: 16px;
|
||||
background: blue;
|
||||
box-sizing: border-box;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
</style>
|
|
@ -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>
|
|
@ -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>
|
|
@ -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>
|
Loading…
Reference in New Issue