码迷,mamicode.com
首页 > 其他好文 > 详细

antd-mobile Picker 组建默认值

时间:2018-12-19 21:09:48      阅读:1406      评论:0      收藏:0      [点我收藏+]

标签:code   class   slot   extend   hand   color   from   默认   mob   

import { createForm } from "rc-form";


@createForm()
class TopAdSlots extends Component {
  @observable vs = [];
 
  @action
  handlePickerChange = vs => {
    this.vs = vs;
  };

  render() {
    const { getFieldProps } = this.props.form;
    return (
            <Picker
              onOk={this.handlePickerChange}
              data={this.area}
              title="选择地区"
              {...getFieldProps("district", {
                initialValue: [this.vs],
              })}
            >
              <Button color="primary">
                地区<Icon>arrow_drop_down</Icon>
              </Button>
            </Picker>
    );
  }
}

antd-mobile Picker 组建默认值

标签:code   class   slot   extend   hand   color   from   默认   mob   

原文地址:https://www.cnblogs.com/ajanuw/p/10145497.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!