mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
33 lines
618 B
JavaScript
33 lines
618 B
JavaScript
'use strict';
|
|
|
|
Component({
|
|
behaviors: ['wx://form-field'],
|
|
|
|
externalClasses: ['radio-class', 'radio-color'],
|
|
|
|
properties: {
|
|
items: Array,
|
|
type: String
|
|
},
|
|
|
|
methods: {
|
|
radioChange: function radioChange(e) {
|
|
this.selectItem(e.detail.value);
|
|
this.triggerEvent('change', e);
|
|
},
|
|
selectItem: function selectItem(value) {
|
|
var items = this.data.items;
|
|
|
|
|
|
items.forEach(function (item) {
|
|
if (item.name === value) {
|
|
item.checked = true;
|
|
} else {
|
|
item.checked = false;
|
|
}
|
|
});
|
|
|
|
this.setData({ items: items });
|
|
}
|
|
}
|
|
}); |