<template>
|
<div class="login-page">
|
<div class="layout-1">
|
<div class="header-row">
|
<img src="@/assets/img/logo.png" alt="Logo" class="logo-img" />
|
<span class="title-text">青汽</span>
|
</div>
|
<div class="copyright-row">Copyright©罗伯泰克股份有限公司</div>
|
</div>
|
<div class="layout-2">
|
<login-form />
|
</div>
|
</div>
|
</template>
|
|
<script>
|
import LoginForm from './components/Form.vue'
|
export default {
|
name:'loginPageIndex',
|
components:{LoginForm}
|
}
|
</script>
|
|
<style lang="scss" scoped>
|
.login-page{
|
height: 100%;
|
width: 100%;
|
min-height: 360px;
|
min-width: 480px;
|
position: relative;
|
display: flex;
|
background-color: #F0F8FF;
|
background-repeat: no-repeat;
|
background-size: 100% 100%;
|
// background-image: url(@/assets/img/bk.jpg);
|
.layout-1,.layout-2{
|
position: absolute;
|
top:0;
|
left:0;
|
width: 100%;
|
height: 100%;
|
display: flex;
|
}
|
.layout-1{
|
z-index: 1;
|
flex-direction: column;
|
justify-content: space-between;
|
}
|
.layout-2{
|
z-index: 2;
|
align-items: center;
|
justify-content: flex-end;
|
}
|
.copyright-row{
|
font-size: 12px;
|
color:#666666;
|
text-align: center;
|
padding: 8px 0;
|
}
|
.header-row{
|
display: flex;
|
align-items: center;
|
.logo-img{
|
height: 100px;
|
width: auto;
|
margin-right: 12px;
|
}
|
.title-text{
|
font-size: 46px;
|
color: #FFFFFF;
|
}
|
}
|
}
|
</style>
|