Pre Merge pull request !1 from 武奔_96/dev

This commit is contained in:
武奔_96 2023-12-05 09:31:39 +00:00 committed by Gitee
commit 2e5f91dae5
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -5,7 +5,10 @@ var component_1 = require("../common/component");
field: true,
classes: ['node-class'],
props: {
checked: null,
checked: {
type: null,
observer: 'updateValue',
},
loading: Boolean,
disabled: Boolean,
activeColor: String,
@ -24,6 +27,14 @@ var component_1 = require("../common/component");
},
},
methods: {
updateValue(checked) {
var _a = this.data, activeValue = _a.activeValue, inactiveValue = _a.inactiveValue;
var _checked = checked === activeValue;
var value = _checked ? activeValue : inactiveValue;
this.setData({
value
})
},
onClick: function () {
var _a = this.data, activeValue = _a.activeValue, inactiveValue = _a.inactiveValue, disabled = _a.disabled, loading = _a.loading;
if (disabled || loading) {