mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
* change example dir * Update README.md 更新预览教程 * 新增 layout 组件 * exclude example * change .wxss -> .pcss * 脚本目录更名为 scripts
71 lines
1.1 KiB
JavaScript
71 lines
1.1 KiB
JavaScript
Page({
|
|
data: {
|
|
steps: [
|
|
{
|
|
current: true,
|
|
done: true,
|
|
text: '步骤一',
|
|
desc: '10.01'
|
|
},
|
|
{
|
|
done: false,
|
|
current: false,
|
|
text: '步骤二',
|
|
desc: '10.02'
|
|
},
|
|
{
|
|
done: false,
|
|
current: false,
|
|
text: '步骤三'
|
|
}
|
|
],
|
|
steps2: [
|
|
{
|
|
current: false,
|
|
done: true,
|
|
text: '步骤一',
|
|
desc: '10.01'
|
|
},
|
|
{
|
|
done: true,
|
|
current: true,
|
|
text: '步骤二',
|
|
desc: '10.02'
|
|
},
|
|
{
|
|
done: false,
|
|
current: false,
|
|
text: '步骤三',
|
|
desc: '10.03'
|
|
}
|
|
],
|
|
steps3: [
|
|
{
|
|
current: false,
|
|
done: true,
|
|
text: '步骤一',
|
|
desc: '10.01'
|
|
},
|
|
{
|
|
done: true,
|
|
current: false,
|
|
text: '步骤二',
|
|
desc: '10.02'
|
|
},
|
|
{
|
|
done: true,
|
|
current: true,
|
|
text: '步骤三',
|
|
desc: '10.03'
|
|
}
|
|
]
|
|
},
|
|
|
|
onLoad() {
|
|
|
|
},
|
|
|
|
onShow() {
|
|
},
|
|
});
|