<template>
|
<div class="success">
|
<el-main>
|
<div class="main-header">
|
<div class="img">
|
<i class="el-icon-check"></i>
|
</div>
|
<div class="title">
|
成功状态提示
|
</div>
|
<div class="desc">
|
提交结果页用于反馈一系列操作任务的处理结果, 如果仅是简单操作,使用Message全局提示反馈即可。 本文字区域可以展示简单的补充说明,如果有类似展示
|
“进度步骤”的需求,下面区域可以呈现比较复杂的内容。
|
</div>
|
</div>
|
<div class="main-content">
|
<ul>
|
<li class="line">
|
<img class="bk" src="../../../assets/icons/svg/fe7420.svg"
|
alt="">
|
<img class="progress" src="../../../assets/icons/svg/f50f457.svg"
|
alt="">
|
<img class="default-circle" src="../../../assets/icons/svg/c1a99c387.svg"
|
alt="">
|
<img class="default-circle circle2" src="../../../assets/icons/svg/c1a99c387.svg"
|
alt="">
|
</li>
|
</ul>
|
</div>
|
<div class="main-footer">
|
<el-button type="primary">返回</el-button>
|
<el-button class="look">查看项目</el-button>
|
</div>
|
</el-main>
|
<el-footer>
|
<myFooter />
|
</el-footer>
|
</div>
|
</template>
|
<script>
|
import myFooter from '@/components/Footer'
|
export default {
|
components: {
|
myFooter
|
},
|
data() {
|
|
},
|
|
}
|
</script>
|
<style lang="scss" scoped>
|
.success {
|
height: 100vh;
|
min-width: 960px;
|
display: flex;
|
flex-direction: column;
|
justify-content: center;
|
|
.el-main {
|
display: flex;
|
flex-direction: column;
|
justify-content: center;
|
align-items: center;
|
|
.main-header {
|
display: flex;
|
flex-direction: column;
|
justify-content: center;
|
align-items: center;
|
|
.img {
|
background-color: #4bd863;
|
width: 80px;
|
height: 80px;
|
display: flex;
|
align-items: center;
|
justify-content: center;
|
color: #fff;
|
font-size: 70px;
|
border-radius: 50%;
|
}
|
|
.title {
|
color: #666666;
|
font-weight: 650;
|
font-size: 24px;
|
line-height: 60px;
|
}
|
|
.desc {
|
width: 742px;
|
font-size: 14px;
|
color: #999;
|
}
|
}
|
|
.main-content {
|
width: 100%;
|
ul{
|
list-style: none;
|
}
|
.line{
|
position: relative;
|
|
.bk{
|
position: absolute;
|
top: 0;
|
left: 0;
|
}
|
.progress{
|
position: absolute;
|
top: 0;
|
left: 0;
|
}
|
.default-circle{
|
position: absolute;
|
left: 0;
|
top: -4px;
|
}
|
.circle2{
|
left: 100px;
|
}
|
}
|
}
|
|
.main-footer {
|
margin-top: 60px;
|
|
.el-button {
|
width: 140px;
|
height: 40px;
|
background-color: #0079fe;
|
|
&:hover {
|
background-color: rgba(0, 121, 254, 0.7);
|
}
|
}
|
|
.look {
|
background-color: #fff;
|
border: 1px solid rgba(0, 121, 254, 1);
|
color: #0079fe;
|
|
&:hover {
|
color: #3394fe;
|
background-color: #fff;
|
}
|
}
|
}
|
}
|
}
|
</style>
|