<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>
|