mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
38 lines
562 B
JavaScript
38 lines
562 B
JavaScript
var Zan = require('../../dist/index');
|
|
|
|
Page(Object.assign({}, Zan.Switch, {
|
|
data: {
|
|
sync: {
|
|
checked: false
|
|
},
|
|
async: {
|
|
checked: true,
|
|
loading: false
|
|
},
|
|
},
|
|
|
|
syncChange(e, data) {
|
|
this.setData({
|
|
sync: {
|
|
checked: data.checked
|
|
}
|
|
});
|
|
},
|
|
|
|
asyncChange(e, data) {
|
|
this.setData({
|
|
async: {
|
|
loading: true
|
|
}
|
|
});
|
|
setTimeout(() => {
|
|
this.setData({
|
|
async: {
|
|
loading: false,
|
|
checked: data.checked
|
|
}
|
|
});
|
|
}, 500);
|
|
}
|
|
}));
|