nrz cf9cfdb44b [new feature] 新增 Radio (#354)
* [new component]: Radio

* [new component]: Radio misc

* [new component] Radio code review

* [new component] Radio code review

* [new component] Radio misc

* [new component] Radio improve style
2018-07-15 14:47:03 +08:00

20 lines
423 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

Page({
data: {
items: [
{name: 'USA', value: '美国'},
{name: 'CHN', value: '中国', checked: 'true'}
],
items1: [
{name: 'USA', value: '美国'},
{name: 'BRA', value: '巴西', disabled: true },
{name: 'CHN', value: '中国', checked: 'true'}
]
},
handleRadioChange: function(e) {
console.log('radio发生change事件携带value值为', e.detail)
}
});