mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
49 lines
1.2 KiB
JavaScript
49 lines
1.2 KiB
JavaScript
import { VantComponent } from '../common/component';
|
|
VantComponent({
|
|
field: true,
|
|
classes: ['node-class'],
|
|
props: {
|
|
checked: Boolean,
|
|
loading: Boolean,
|
|
disabled: Boolean,
|
|
activeColor: String,
|
|
inactiveColor: String,
|
|
size: {
|
|
type: String,
|
|
value: '30px'
|
|
}
|
|
},
|
|
watch: {
|
|
checked: function checked(value) {
|
|
this.setData({
|
|
value: value
|
|
});
|
|
}
|
|
},
|
|
computed: {
|
|
classes: function classes() {
|
|
return this.classNames('custom-class', 'van-switch', {
|
|
'van-switch--on': this.data.checked,
|
|
'van-switch--disabled': this.data.disabled
|
|
});
|
|
},
|
|
style: function style() {
|
|
var backgroundColor = this.data.checked ? this.data.activeColor : this.data.inactiveColor;
|
|
return "font-size: " + this.data.size + "; " + (backgroundColor ? "background-color: " + backgroundColor : '');
|
|
}
|
|
},
|
|
created: function created() {
|
|
this.setData({
|
|
value: this.data.checked
|
|
});
|
|
},
|
|
methods: {
|
|
onClick: function onClick() {
|
|
if (!this.data.disabled && !this.data.loading) {
|
|
var checked = !this.data.checked;
|
|
this.$emit('input', checked);
|
|
this.$emit('change', checked);
|
|
}
|
|
}
|
|
}
|
|
}); |