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