mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
33 lines
549 B
JavaScript
33 lines
549 B
JavaScript
'use strict';
|
|
|
|
Component({
|
|
properties: {
|
|
checked: {
|
|
type: Boolean,
|
|
value: false
|
|
},
|
|
|
|
loading: {
|
|
type: Boolean,
|
|
value: false
|
|
},
|
|
|
|
disabled: {
|
|
type: Boolean,
|
|
value: false
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
handleZanSwitchChange: function handleZanSwitchChange() {
|
|
if (this.data.loading || this.data.disabled) {
|
|
return;
|
|
}
|
|
var checked = !this.data.checked;
|
|
this.triggerEvent('change', {
|
|
checked: checked,
|
|
loading: this.data.loading
|
|
});
|
|
}
|
|
}
|
|
}); |