ke_junjie
2025-06-04 84620534eb627e95811b971a4b552b6a177829bf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<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>