工作台:中间
This commit is contained in:
parent
6125962265
commit
729681a785
|
@ -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>
|
||||||
|
|
|
@ -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>
|
|
@ -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