mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
* style: badge上标大小改变更加灵活 * style: panel-title的行高跟随字号 * style: 绝对定位的元素width或height为auto,left,right,top,bottom不为auto时,auto的margin将计算为0,同初始值 * style: 修复作为组件使用时dialog的定位问题 * style: 修正示例 * style: add * style: capsule * style: modify readme * style: add noticebar * style: modify readme * style: noticebar优化 * style: add popup * style: remove * style: 左右反了... * style: 通告栏支持同一页面多个 * style: 独立管理不同noticebar的动画数据
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() {
|
|
},
|
|
});
|