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