mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
Pre Merge pull request !1 from 武奔_96/dev
This commit is contained in:
commit
2e5f91dae5
@ -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) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user