TabsList.vue 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <template>
  2. <div class="tabs-list-wrap">
  3. <div class="tabs-list-bar">
  4. <div class="tabs-list-bar-item" style="" v-for="(item,index) in arr" :key="index">
  5. <div :style="{flex:(index==0 ? 1:'1 1 0%')}" :class="{'item': index>0}">
  6. <Icon type="ios-arrow-forward" style="color:#5F83BE;fontSize:22px;" v-show="index>0"/>
  7. </div>
  8. <div class="dot" :class="currentStep==index+1? 'active' : ''">
  9. <i class="iconfont icon-wancheng" style="cursor:pointer;color:#67C272;fontSize:26px;marginRight:6px" v-if="currentStep==index+1"></i>
  10. <div class="default-dot" v-else></div>
  11. {{item}}
  12. </div>
  13. <div :style="{flex:(index==arr.length-1 ? 1:'1 1 0%')}" :class="{'item': index<arr.length-1}"></div>
  14. </div>
  15. </div>
  16. </div>
  17. </template>
  18. <script>
  19. export default {
  20. name: "TabsList",
  21. props: {
  22. currentStep: {
  23. type: Number,
  24. default: 1
  25. },
  26. },
  27. components:{
  28. },
  29. data() {
  30. return {
  31. arr:['基础信息','选择数据源','配置规则','完成'],
  32. };
  33. },
  34. mounted() {
  35. },
  36. methods: {
  37. }
  38. };
  39. </script>
  40. <style scoped lang="stylus">
  41. .tabs-list-wrap {
  42. width: 100%;
  43. height: 64px;
  44. background: #113A7B;
  45. }
  46. .tabs-list-bar {
  47. display:flex;
  48. align-items: center;
  49. height:100%;
  50. }
  51. .tabs-list-bar-item {
  52. flex:1;
  53. display:flex;
  54. align-items: center;
  55. }
  56. .dot{
  57. text-align: center;
  58. color: #FFFFFF;
  59. font-size: 18px;
  60. display: flex;
  61. align-items: center;
  62. }
  63. .item{
  64. flex:1;
  65. }
  66. .active {
  67. color: #67C272;
  68. }
  69. .default-dot {
  70. width: 22PX;
  71. height: 22PX;
  72. background: #113A7B;
  73. border: 2PX solid #739EE6;
  74. border-radius: 50%;
  75. margin-right: 6PX;
  76. }
  77. </style>