12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- <template>
- <view :class="'custom-class ' + utils.bem('steps', [direction])">
- <view class="van-step__wrapper">
- <view
- @tap="onClick"
- :data-index="index"
- :class="utils.bem('step', [direction, status(index, active)]) + ' van-hairline'"
- :style="status(index, active) === 'inactive' ? 'color: ' + inactiveColor : ''"
- v-for="(item, index) in steps"
- :key="index"
- >
- <view class="van-step__title" :style="index === active ? 'color: ' + activeColor : ''">
- <view>{{ item.text }}</view>
- <view class="desc-class">{{ item.desc }}</view>
- </view>
- <view class="van-step__circle-container">
- <block v-if="index !== active">
- <van-icon
- v-if="item.inactiveIcon || inactiveIcon"
- :color="status(index, active) === 'inactive' ? inactiveColor : activeColor"
- :name="item.inactiveIcon || inactiveIcon"
- custom-class="van-step__icon"
- />
- <view v-else class="van-step__circle" :style="'background-color: ' + (index < active ? activeColor : inactiveColor)" />
- </block>
- <van-icon v-else :name="item.activeIcon || activeIcon" :color="activeColor" custom-class="van-step__icon" />
- </view>
- <view v-if="index !== steps.length - 1" class="van-step__line" :style="'background-color: ' + (index < active ? activeColor : inactiveColor)" />
- </view>
- </view>
- </view>
- </template>
- <script module="utils" lang="wxs" src="@/miniprogram_npm/@vant/weapp/wxs/utils.wxs"></script>
- <script module="status" lang="wxs">
- function get(index, active) {
- if (index < active) {
- return 'finish';
- } else if (index === active) {
- return 'process';
- }
- return 'inactive';
- }
- module.exports = get;
- </script>
- <script>
- 'use strict';
- Object.defineProperty(exports, '__esModule', {
- value: true
- });
- var component_1 = require('../common/component');
- var color_1 = require('../common/color');
- component_1.VantComponent({
- classes: ['desc-class'],
- props: {
- icon: String,
- steps: Array,
- active: Number,
- direction: {
- type: String,
- value: 'horizontal'
- },
- activeColor: {
- type: String,
- value: color_1.GREEN
- },
- inactiveColor: {
- type: String,
- value: color_1.GRAY_DARK
- },
- activeIcon: {
- type: String,
- value: 'checked'
- },
- inactiveIcon: String
- },
- methods: {
- onClick: function (event) {
- var index = event.currentTarget.dataset.index;
- this.$emit('click-step', index);
- }
- }
- });
- </script>
- <style>
- @import './index.css';
- </style>
|