YSteps.vue 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. <template>
  2. <!--
  3. stepList: [
  4. {
  5. date: '08-28', // 左侧日期 -- 必选
  6. time: '11:22', // 左侧时间 -- 必选
  7. info: '开卡', // 右侧内容 -- 可选
  8. index: '1', // 中间 Index -- 可选
  9. isFinished: true, // 是否已完成(完成 index 为 √)-- 可选
  10. isActive: false, // 是否为当前节点 Active(当前节点 即使完成 index 也不会显示 √)-- 可选
  11. isShowSlot: false // 右侧是否有 Slot(显示在 右侧内容下方)-- 可选
  12. },
  13. {
  14. date: '08-30',
  15. time: '15:33',
  16. info: '激活',
  17. index: '2',
  18. isFinished: false,
  19. isActive: true,
  20. isShowSlot: true
  21. }
  22. ]
  23. slot 示例:
  24. <y-steps :stepList="stepList">
  25. <mx-button type="danger" value="激活网点查看" />
  26. </y-steps>
  27. 可按自己需求修改 css 中颜色变量
  28. -->
  29. <view class="steps">
  30. <view
  31. v-for="(step, index) in stepList"
  32. :key="'stepsItem' + index"
  33. :class="['steps-item', step.isActive ? 'steps-item-active' : '', step.isFinished ? 'steps-item-finished' : '']">
  34. <view class="steps-item-left">
  35. <text class="steps-item-left-date">{{ step.date }}<br><text class="steps-item-left-time">{{ step.time }}</text></text>
  36. </view>
  37. <view class="steps-item-index">
  38. <view :class="['line', index != 0 ? '' : 'line-transparent']"></view>
  39. <view v-if="!step.isActive && step.isFinished" class="index index-success"><icon type="success_no_circle" size="16" /></view>
  40. <view v-else class="index">{{ step.index ? step.index : index + 1 }}</view>
  41. <view :class="['line', index != stepList.length - 1 ? '' : 'line-transparent']"></view>
  42. </view>
  43. <view class="steps-item-right">
  44. <view class="right-info-item">
  45. <view>{{ step.info }}</view>
  46. <view v-if="step.isShowSlot">
  47. <slot></slot>
  48. </view>
  49. </view>
  50. </view>
  51. </view>
  52. </view>
  53. </template>
  54. <script>
  55. export default {
  56. name: 'YSteps',
  57. props: {
  58. stepList: {
  59. type: Array,
  60. default: () => []
  61. }
  62. }
  63. };
  64. </script>
  65. <style lang="scss" scoped>
  66. $normolColor: #009688;
  67. $activeColor: #ff3838;
  68. $finishedColor: #4DB6AC;
  69. $normolBgColor: #80CBC4;
  70. $activeBgColor: #F8BBD0;
  71. $finishedBgColor: #B2DFDB;
  72. .steps {
  73. display: flex;
  74. flex-direction: column;
  75. .steps-item {
  76. display: flex;
  77. .steps-item-left {
  78. display: flex;
  79. align-items: center;
  80. color: $normolColor;
  81. .steps-item-left-date {
  82. font-size: 30rpx;
  83. padding-top: 32rpx;
  84. line-height: 40rpx;
  85. }
  86. .steps-item-left-time {
  87. font-size: 26rpx;
  88. }
  89. }
  90. .steps-item-index {
  91. padding: 0 20rpx;
  92. display: flex;
  93. flex-direction: column;
  94. align-items: center;
  95. .line {
  96. flex: 1;
  97. width: 5rpx;
  98. background-color: $normolBgColor;
  99. }
  100. .line-transparent {
  101. background-color: transparent;
  102. }
  103. .index {
  104. width: 50rpx;
  105. height: 50rpx;
  106. font-size: 25rpx;
  107. font-weight: 900;
  108. text-align: center;
  109. line-height: 50rpx;
  110. border-radius: 50rpx;
  111. color: $normolColor;
  112. background-color: $normolBgColor;
  113. }
  114. /deep/ .index-success {
  115. display: flex;
  116. justify-content: center;
  117. align-items: center;
  118. .uni-icon-success_no_circle {
  119. color: $normolColor;
  120. }
  121. }
  122. }
  123. .steps-item-right {
  124. display: flex;
  125. flex-direction: column;
  126. padding: 20rpx 0;
  127. color: $normolColor;
  128. .right-info-item {
  129. display: flex;
  130. flex-direction: column;
  131. justify-content: center;
  132. padding: 30rpx;
  133. text {
  134. font-size: 30rpx;
  135. font-weight: 600;
  136. line-height: 30rpx;
  137. }
  138. }
  139. }
  140. }
  141. .steps-item-finished {
  142. .steps-item-left {
  143. color: $finishedColor;
  144. }
  145. .steps-item-index {
  146. .index {
  147. color: $finishedColor;
  148. background-color: $finishedBgColor;
  149. }
  150. }
  151. .steps-item-right {
  152. color: $finishedColor;
  153. }
  154. }
  155. .steps-item-active {
  156. .steps-item-left {
  157. color: $activeColor;
  158. }
  159. .steps-item-index {
  160. .index {
  161. color: $activeColor;
  162. background-color: $activeBgColor;
  163. }
  164. }
  165. .steps-item-right {
  166. color: $activeColor;
  167. }
  168. }
  169. }
  170. </style>