king
2020-07-29 ca51b8836f1578f81012cbe7ff63bf6061229823
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<template>
    <div class="sign-wrap">
        <router-view />
        <div class="information">
            <div class="protocol">
                <a href="http://minkesoft.com/protocol.html" target="_blank">用户协议</a>
                <a href="http://minkesoft.com/privacy.html" target="_blank">隐私条款</a>
            </div>
            <div class="copyright">
                Copyright©2020  北京明科普华信息技术有限公司  版权所有  保留一切权利  京ICP备12007830号
            </div>
        </div>
    </div>
</template>
 
<script>
    import Vue from 'vue'
    import SliderVerificationCode from 'slider-verification-code'
    import 'slider-verification-code/lib/slider-verification-code.css'
    
    Vue.use(SliderVerificationCode)
    export default {
        data() {
            return {}
        },
        methods: {
 
        },
        created () {
            this.Service.loginSSO().then(res => {
                if (res.status) {
                    sessionStorage.setItem('LoginUID', res.LoginUID || '')
                    sessionStorage.setItem('UserID', res.UserID || '')
                }
            })
        }
    }
</script>
 
<style lang="less" scoped>
    .sign-wrap {
        position: relative;
        padding-bottom: 170px;
        min-height: 100%;
    }
    .information {
        position: absolute;
        width: 1200px;
        bottom: 20px;
        left: calc(50vw - 600px);
        height: 90px;
    line-height: 2;
    padding-top: 15px;
        background: #f0f0f0;
        text-align: center;
        font-size: 13px;
        border-radius: 4px;
        .protocol {
            color: #262626;
            a {
                display: inline-block;
                padding: 0 7px 0px 3px;
                line-height: 1;
                cursor: pointer;
            }
            a:not(:last-child) {
                border-right: 1px solid #000000;
            }
        }
        .copyright {
            font-size: 13px;
        color: #8c8c8c;
        }
    }
 
    @media (max-width: 750px) and (min-width: 0) {
        .sign-wrap {
            padding-bottom: 110px;
        }
        .information {
            width: 100%;
            left: 0;
            bottom: 0;
            height: 100px;
            border-radius: 0;
            padding: 15px 20px 0px;
            .copyright {
                line-height: 20px;
            }
        }
    }
    @media (min-width: 750px) {
        
    }
</style>