zhanghua
2023-10-24 5b1a4f4e29652cf1b2f4eb406d96700acffc9e8c
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
150
151
152
153
<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>