<!--
|
* @Date: 2024-01-04 19:40:32
|
* @LastEditors: Sneed
|
* @LastEditTime: 2024-01-04 20:45:45
|
* @FilePath: /belleson-frontend/Users/mache/Library/Containers/com.tencent.xinWeChat/Data/Library/Application Support/com.tencent.xinWeChat/2.0b4.0.9/650b28d71b3acf9feb5c2af6da2686eb/Message/MessageTemp/650b28d71b3acf9feb5c2af6da2686eb/File/mdc-portal/src/components/home/index.vue
|
-->
|
<template>
|
<div class="home">
|
<div class="header">
|
<img src="~@/assets/img/login/logo.png" alt="">
|
<div class="menu">
|
<slot name="menu"></slot>
|
</div>
|
|
</div>
|
<div class="content">
|
<slot name="content"></slot>
|
</div>
|
<div class="footer">
|
</div>
|
</div>
|
</template>
|
<script>
|
export default {
|
mounted () {
|
console.log(this, '------')
|
}
|
}
|
</script>
|
<style lang="scss" scoped>
|
$bg:#2d3a4b;
|
$dark_gray:#889aa4;
|
$light_gray:#eee;
|
.home {
|
/*position: relative;*/
|
height: 100%;
|
width: 100%;
|
background-color: $bg;
|
overflow: auto;
|
display: flex;
|
flex-direction: column;
|
.header {
|
padding-left: 24px;
|
padding-right: 24px;
|
height: 94px;
|
flex: 0 0 auto;
|
background-image: url('~@/assets/img/login/top.png');
|
background-size: contain;
|
display: flex;
|
align-items: center;
|
// justify-content: space-between;
|
& > img {
|
flex: 0 0 auto;
|
width: 500px;
|
max-height: 91px;
|
align-self: flex-start;
|
}
|
.menu {
|
height: 50px;
|
margin-left: auto;
|
}
|
}
|
.content {
|
flex: 1 1 auto;
|
background-image: url('~@/assets/img/login/bg.png');
|
background-size: cover;
|
background-repeat: no-repeat;
|
position: relative;
|
overflow: hidden;
|
.compName {
|
font-size: 23px;
|
color: #FFFFFF;
|
line-height: 33px;
|
position: absolute;
|
left: 0;
|
right: 0;
|
text-align: center;
|
bottom: 30px;
|
}
|
}
|
.footer {
|
height: 46px;
|
background-image: url('~@/assets/img/login/footer.png');
|
background-size: cover;
|
background-repeat: no-repeat;
|
flex: 0 0 auto;
|
}
|
}
|
</style>
|