mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
50 lines
841 B
TypeScript
50 lines
841 B
TypeScript
import { VantComponent } from '../../common/component';
|
|
import Toast from '../../toast/toast';
|
|
import icons from '@vant/icons/src/config';
|
|
|
|
const steps = [
|
|
{
|
|
text: '步骤一',
|
|
desc: '描述信息',
|
|
},
|
|
{
|
|
text: '步骤二',
|
|
desc: '描述信息',
|
|
},
|
|
{
|
|
text: '步骤三',
|
|
desc: '描述信息',
|
|
},
|
|
{
|
|
text: '步骤四',
|
|
desc: '描述信息',
|
|
},
|
|
];
|
|
|
|
VantComponent({
|
|
data: {
|
|
active: 1,
|
|
steps,
|
|
customIconSteps: steps.map((item, index) => ({
|
|
...item,
|
|
inactiveIcon: icons.outline[index],
|
|
activeIcon: icons.basic[index],
|
|
})),
|
|
},
|
|
|
|
methods: {
|
|
nextStep() {
|
|
this.setData({
|
|
active: ++this.data.active % 4,
|
|
});
|
|
},
|
|
|
|
onClick(event) {
|
|
Toast({
|
|
context: this,
|
|
message: `Index: ${event.detail}`,
|
|
});
|
|
},
|
|
},
|
|
});
|