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