import React from 'react' import { Button, CheckBox, CheckBoxGroup, Dialog, Form, ListItem, Switch } from 'rcm-mobile' import { renderMobile } from 'example/utils/renderHelper' import 'example/index.scss' /** * CheckBoxGroupExample 演示案例 * @author sayll * @version 0.0.1 */ export default class Example extends React.PureComponent { state = { disabled: true } componentDidMount() { } render() { return (

CheckBoxGroup 演示

部分选项只读

this.setState({ disabled })} value={this.state.disabled} />
Dialog.alert(JSON.stringify(sender.values))}> A选项: 0 1 2 3
B选项: 0 1 2 3
) } } renderMobile(Example)