Welink React-ui表单组件Switch

举报
云会议运营喵大人 发表于 2020/02/21 18:32:06 2020/02/21
【摘要】 Switch选择开关。Switch UI 提供与WeLink规范一致的视图。参数说明参数类型默认值说明checkedboolfalse是否打开onChangefunc-变更Switch状态事件import React from 'react';import { CellsTitle, CellBody, CellBodyExplan, CellFooter, Form, Form...

Switch


选择开关。Switch UI 提供与WeLink规范一致的视图。

参数说明

参数类型默认值说明
checkedboolfalse是否打开
onChangefunc-变更Switch状态事件

import React from 'react';
import {
  CellsTitle,
  CellBody,
  CellBodyExplan,
  CellFooter,
  Form,
  FormCell,
  Switch
} from '@wecode/react-weui';

class SwitchDemo extends React.Component {
  state = {
    checked: true,
    checkedBody: true
  };

  handelChangeChecked=(key, e)=>{
    this.setState({ [key]: e.target.checked });
  }

  render() {
    const { checked, checkedBody } = this.state;
    return (
      <section>
        <CellsTitle>Switch开关</CellsTitle>
        <Form>
          <FormCell switch>
            <CellBody>主文体</CellBody>
            <CellFooter>
              <Switch checked={checked} onChange={e => this.handelChangeChecked('checked', e)} />
            </CellFooter>
          </FormCell>
          <FormCell switch>
            <CellBody>
              主文体
              <CellBodyExplan>此处是辅助说明文体,说明文本</CellBodyExplan>
            </CellBody>
            <CellFooter>
              <Switch checked={checkedBody} onChange={e => this.handelChangeChecked('checkedBody', e)} />
            </CellFooter>
          </FormCell>
        </Form>
      </section>
    );
  }
}

export default SwitchDemo;


【版权声明】本文为华为云社区用户原创内容,未经允许不得转载,如需转载请自行联系原作者进行授权。如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。