|
|
@ -0,0 +1,56 @@ |
|
|
|
<template> |
|
|
|
<ContentContainer class="homepage-wrapper"> |
|
|
|
<!-- 上面模块 --> |
|
|
|
<div class="homepage-top-wrap clearfix"> |
|
|
|
<!-- 左侧客户树 --> |
|
|
|
<div class="homepage-top-left-wrap fl"> |
|
|
|
<Customer /> |
|
|
|
</div> |
|
|
|
<!-- 右侧预测版本列表、正式订单、产品需求 --> |
|
|
|
<div class="homepage-top-right-wrap"> |
|
|
|
<Beta /> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<!-- 下面模块(多版本比较、偏差分析、客户零件清单) --> |
|
|
|
<div class="homepage-bottom-wrap"> |
|
|
|
<Formal /> |
|
|
|
</div> |
|
|
|
</ContentContainer> |
|
|
|
</template> |
|
|
|
<script> |
|
|
|
import Customer from './customer' |
|
|
|
import Beta from './beta' |
|
|
|
import Formal from './formal' |
|
|
|
export default { |
|
|
|
components:{ |
|
|
|
Customer, |
|
|
|
Beta, |
|
|
|
Formal |
|
|
|
}, |
|
|
|
} |
|
|
|
</script> |
|
|
|
<style lang="less" scoped> |
|
|
|
.homepage-wrapper { |
|
|
|
height: 100%; |
|
|
|
.homepage-top-wrap{ |
|
|
|
width: 100%; |
|
|
|
height: calc(50% - 10px); |
|
|
|
margin-bottom: 20px; |
|
|
|
.homepage-top-left-wrap { |
|
|
|
width: 300px; |
|
|
|
background: #fff; |
|
|
|
height: 100%; |
|
|
|
} |
|
|
|
.homepage-top-right-wrap { |
|
|
|
margin-left: 320px; |
|
|
|
background: #fff; |
|
|
|
height: 100%; |
|
|
|
} |
|
|
|
} |
|
|
|
.homepage-bottom-wrap{ |
|
|
|
width: 100%; |
|
|
|
height: calc(50% - 10px); |
|
|
|
background: #fff; |
|
|
|
} |
|
|
|
} |
|
|
|
</style> |