mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
31 lines
384 B
JavaScript
31 lines
384 B
JavaScript
var app = getApp()
|
|
|
|
Page({
|
|
data: {
|
|
steps: [
|
|
{
|
|
current: false,
|
|
done: true,
|
|
text: '步骤一'
|
|
},
|
|
{
|
|
done: true,
|
|
current: true,
|
|
text: '步骤二'
|
|
},
|
|
{
|
|
done: false,
|
|
current: false,
|
|
text: '步骤三'
|
|
}
|
|
]
|
|
},
|
|
|
|
onLoad: function () {
|
|
|
|
},
|
|
|
|
onShow: function() {
|
|
},
|
|
})
|