import React, { Component } from 'react'; import { SnackbarHOC, getImageUrl, City } from 'educoder'; import { Form, Button, Input, Radio, Select, Tooltip, Icon } from 'antd' import './common.css' const RadioGroup = Radio.Group; const Option = Select.Option const radioOptions = [ { label: '男', value: 'boy' }, { label: '女', value: 'girl' }, ]; class AccountBasicEdit extends Component { constructor(props){ super(props); } render() { const { getFieldDecorator } = this.props.form; const {basicInfo} =this.props const showRealName = false; return (