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>
    );
  }
}

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2023-01-18
  • 2021-09-17
  • 2021-10-30
猜你喜欢
  • 2021-11-13
  • 2022-12-23
  • 2022-01-28
  • 2022-12-23
  • 2021-06-05
  • 2021-12-03
  • 2021-10-24
相关资源
相似解决方案