<template>
|
<div class="sign-success-wrap">
|
<header class="logo-header">
|
<img src="../../img/mingke_logo.png" alt="">
|
<span class="plat-name">明科开发者平台</span>
|
<a class="plat-name" :style="{color: '#40a9ff', border: 0}" href="http://mk9h.cn/a.asp?a=9CCB" target="_blank">文档中心</a>
|
</header>
|
<div class="to-login">
|
<p v-if="type === 'signup'">注册成功</p>
|
<p v-if="type === 'forgetpwd'">密码修改成功</p>
|
<p class="other">去PC端登陆</p>
|
<a href="http://cloud.mk9h.cn/index.html" target="_blank">去登陆<i class="el-icon-arrow-right"></i></a>
|
</div>
|
</div>
|
</template>
|
|
<script>
|
export default {
|
data() {
|
return {
|
type: ''
|
}
|
},
|
methods: {
|
|
},
|
created () {
|
this.type = this.$route.params.type
|
}
|
}
|
</script>
|
|
<style lang="less" scoped>
|
.sign-success-wrap {
|
|
width: 1200px;
|
margin: 0 auto;
|
|
.logo-header {
|
position: relative;
|
background: #fafafa;
|
margin-bottom: 28vh;
|
height: 50px;
|
padding: 7px 15px;
|
img {
|
height: 40px;
|
line-height: 50px;
|
}
|
.plat-name {
|
border-left: 2px solid #d9d9d9;
|
margin-left: 5px;
|
padding-left: 10px;
|
font-size: 16px;
|
}
|
}
|
|
.to-login {
|
text-align: center;
|
font-size: 22px;
|
a {
|
font-size: 16px;
|
color: #40a9ff;
|
}
|
.other {
|
display: none;
|
}
|
}
|
}
|
|
@media (max-width: 750px) and (min-width: 0) {
|
.sign-success-wrap {
|
width: 100%;
|
.to-login {
|
a {
|
display: none;
|
}
|
.other {
|
display: inline-block;
|
font-size: 16px;
|
}
|
}
|
}
|
}
|
</style>
|