2018-07-10 16:33:11 +08:00

35 lines
602 B
JavaScript

'use strict';
Component({
externalClasses: ['custom-class', 'theme-class'],
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
});
}
}
});