Yao e4dfc9e48c
[new feature] Layout: 新增 layout 组件 (#43)
* change example dir

* Update README.md

更新预览教程

* 新增 layout 组件

* exclude example

* change .wxss -> .pcss

* 脚本目录更名为 scripts
2017-10-31 17:41:31 +08:00

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() {
},
});