Oliver
2022-12-14 02ce22be65df8b717d5f1614e5d7dbfcdf1ce1b9
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<template>
    <div class="fail">
        <el-main>
            <div class="main-header">
                <div class="img">
                    X
                </div>
                <div class="header-title">
                    <span>提交失败</span>
                </div>
                <div class="header-tip">
                    <span>请核对并修改以下信息,再重新提交</span>
                </div>
            </div>
            <div class="main-content">
                <h4>您提交的内容有如下错误:</h4>
                <div class="main-tip">
                    <div class="img">
                        X
                    </div>
                    <span>您的账户已被冻结</span>
                    <el-link>立即解冻<i class="el-icon-arrow-right"></i></el-link>
                </div>
                <div class="main-tip">
                    <div class="img">
                        X
                    </div>
                    <span>您的账户还不具备申请资格</span>
                    <el-link>立即升级<i class="el-icon-arrow-right"></i></el-link>
                </div>
            </div>
            <div class="main-footer">
                <el-button type="primary">返回修改</el-button>
            </div>
        </el-main>
        <el-footer>
            <myFooter></myFooter>
        </el-footer>
    </div>
</template>
<script>
    import myFooter from '@/components/Footer'
    export default {
        components:{
            myFooter,
        },
        data(){
            return{
 
            }
        },
    }
</script>
<style lang="scss" scoped>
.fail {
    min-width: 960px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
 
    .img {
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
    }
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        .main-header {
            display: flex;
            flex-direction: column;
            align-items: center;
            .img {
                font-size: 50px;
                width: 80px;
                height: 80px;
                background-color: #f95e5a;
                color: #fff;
            }
 
            .header-title {
                line-height: 60px;
                font-weight: 650;
                font-size: 24px;
                color: #666;
            }
 
            .header-tip {
                color: #b39999;
            }
 
 
        .main-content {
            margin-top: 20px;
            margin-left: -400px;
            h4 {
                color: #666;
            }
 
            .main-tip {
                display: flex;
                align-items: center;
                line-height: 30px;
 
                .img {
                    width: 14px;
                    height: 14px;
                    font-size: 10px;
                    border: 2px solid #f95e5a;
                    color: #f95e5a;
                    font-weight: 650;
                }
 
                span {
                    margin-left: 5px;
                    color: #666666;
                }
 
                .el-link {
                    margin-left: 20px;
                    color: #0079fe;
                    font-weight: 650;
 
                    i {
                        font-weight: 650;
                    }
                }
            }
        }
 
        .main-footer {
            margin-top: 60px;
 
            .el-button {
                width: 140px;
                height: 40px;
                background-color: #0079fe;
 
                &:hover {
                    background-color: rgba(0, 121, 254, 0.7);
                }
            }
        }
    }
}
</style>