dengchaochao
2024-07-27 ce3533dad7bebb53ffc730b55e08092b19ae090c
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
<template>
  <div class="step-box">
    <el-steps align-center :active="stepIndex" finish-status="success">
      <el-step :title="$t('zhanghaozhuce')">></el-step>
      <el-step :title="$t('message.user.shimingrenzheng')"></el-step>
      <el-step :title="$t('anquanbangding')"></el-step>
      <el-step :title="$t('message.home.home6')"></el-step>
    </el-steps>
  </div>
</template>
<script setup>
const props = defineProps({
  stepIndex: {
    type: Number,
    default: 1,
  },
});
</script>
 
<style scoped lang="css">
.step-box {
  width: 400px;
  margin: 0 auto;
  margin-bottom: 30px;
}
 
::v-deep .el-step__head.is-success {
  color: #2ebd85 !important;
  border-color: #2ebd85 !important;
}
 
::v-deep .el-step__head.is-success .el-step__icon.is-text {
  background: #2ebd85;
  color: #fff !important;
}
 
::v-deep .el-step__title.is-success {
  color: #2ebd85 !important;
}
 
::v-deep .el-step__icon {
  width: 35px;
  height: 35px;
  background: #e5e9f0;
  color: #fff;
  border-color: #e5e9f0;
}
 
::v-deep .el-step.is-center .el-step__line {
  top: 48% !important;
}
 
::v-deep .el-step__title.is-process {
  color: #c0c4cc;
  font-weight: initial;
}
 
::v-deep .el-step__title {
  font-size: 14px;
  line-height: 24px;
}
</style>