修复van-switch组件在form组件下返回null问题

Signed-off-by: 武奔_96 <1664886636@qq.com>
This commit is contained in:
武奔_96 2023-09-15 09:37:08 +00:00 committed by Gitee
parent 42447bb87c
commit 911e3dba05
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) {