| | |
| | | <template> |
| | | <div class="my-process"> |
| | | <div class="my-pro-header"> |
| | | <el-steps :space="260" :active="active" finish-status="success"> |
| | | <el-steps |
| | | :space="260" |
| | | :active="active" |
| | | align-center |
| | | > |
| | | <el-step |
| | | v-for="item in list" |
| | | :title="item.name" |
| | | :key="item.title" |
| | | ></el-step> |
| | | > |
| | | <template slot="description"> |
| | | <div>环节用时:</div> |
| | | <div> |
| | | <i class="el-icon-time"></i> |
| | | {{ |
| | | item.disposeRecords.length !== 0 |
| | | ? item.disposeRecords[0].linkTime |
| | | : '' |
| | | }} |
| | | <!-- <span>day</span> --> |
| | | </div> |
| | | </template> |
| | | </el-step> |
| | | </el-steps> |
| | | </div> |
| | | <div class="my-pro-main"> |
| | | <!-- <div class="my-pro-main"> |
| | | <div class="pro-step-ver" v-for="(item, index) in list" :key="item.title"> |
| | | <div |
| | | :class="[ |
| | |
| | | </div> |
| | | </div> |
| | | </div> |
| | | </div> |
| | | </div> --> |
| | | </div> |
| | | </template> |
| | | <script> |
| | |
| | | }; |
| | | </script> |
| | | <style lang="scss" scoped> |
| | | // ::v-deep .el-step.is-horizontal .el-step__line { |
| | | // border-top: 2px dashed #ccd1de; |
| | | // height: 0; |
| | | // background-color: transparent; |
| | | // } |
| | | ::v-deep .el-step__title { |
| | | font-size: 20px; |
| | | padding: 10px 0; |
| | | } |
| | | ::v-deep .el-step__title.is-process { |
| | | color: #5388f1; |
| | | } |
| | | |
| | | ::v-deep .el-step__description{ |
| | | font-size: 14px; |
| | | } |
| | | |
| | | .my-process { |
| | | padding-top: 50px; |
| | | .my-pro-header { |