index.vue 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. <template>
  2. <view :class="'custom-class ' + utils.bem('steps', [direction])">
  3. <view class="van-step__wrapper">
  4. <view
  5. @tap="onClick"
  6. :data-index="index"
  7. :class="utils.bem('step', [direction, status(index, active)]) + ' van-hairline'"
  8. :style="status(index, active) === 'inactive' ? 'color: ' + inactiveColor : ''"
  9. v-for="(item, index) in steps"
  10. :key="index"
  11. >
  12. <view class="van-step__title" :style="index === active ? 'color: ' + activeColor : ''">
  13. <view>{{ item.text }}</view>
  14. <view class="desc-class">{{ item.desc }}</view>
  15. </view>
  16. <view class="van-step__circle-container">
  17. <block v-if="index !== active">
  18. <van-icon
  19. v-if="item.inactiveIcon || inactiveIcon"
  20. :color="status(index, active) === 'inactive' ? inactiveColor : activeColor"
  21. :name="item.inactiveIcon || inactiveIcon"
  22. custom-class="van-step__icon"
  23. />
  24. <view v-else class="van-step__circle" :style="'background-color: ' + (index < active ? activeColor : inactiveColor)" />
  25. </block>
  26. <van-icon v-else :name="item.activeIcon || activeIcon" :color="activeColor" custom-class="van-step__icon" />
  27. </view>
  28. <view v-if="index !== steps.length - 1" class="van-step__line" :style="'background-color: ' + (index < active ? activeColor : inactiveColor)" />
  29. </view>
  30. </view>
  31. </view>
  32. </template>
  33. <script module="utils" lang="wxs" src="@/node_modules/@vant/weapp/lib/wxs/utils.wxs"></script>
  34. <script module="status" lang="wxs">
  35. function get(index, active) {
  36. if (index < active) {
  37. return 'finish';
  38. } else if (index === active) {
  39. return 'process';
  40. }
  41. return 'inactive';
  42. }
  43. module.exports = get;
  44. </script>
  45. <script>
  46. 'use strict';
  47. Object.defineProperty(exports, '__esModule', {
  48. value: true
  49. });
  50. var component_1 = require('../common/component');
  51. var color_1 = require('../common/color');
  52. component_1.VantComponent({
  53. classes: ['desc-class'],
  54. props: {
  55. icon: String,
  56. steps: Array,
  57. active: Number,
  58. direction: {
  59. type: String,
  60. value: 'horizontal'
  61. },
  62. activeColor: {
  63. type: String,
  64. value: color_1.GREEN
  65. },
  66. inactiveColor: {
  67. type: String,
  68. value: color_1.GRAY_DARK
  69. },
  70. activeIcon: {
  71. type: String,
  72. value: 'checked'
  73. },
  74. inactiveIcon: String
  75. },
  76. methods: {
  77. onClick: function (event) {
  78. var index = event.currentTarget.dataset.index;
  79. this.$emit('click-step', index);
  80. }
  81. }
  82. });
  83. </script>
  84. <style>
  85. @import './index.css';
  86. </style>