|
@@ -11,6 +11,7 @@ import { Row, Col, Form, Button, Spin, message, Modal, Input } from 'antd';
|
|
|
import './account.less';
|
|
|
const FormItem = Form.Item;
|
|
|
|
|
|
+
|
|
|
class Account extends React.Component {
|
|
|
constructor(props) {
|
|
|
super(props);
|
|
@@ -123,15 +124,19 @@ class Account extends React.Component {
|
|
|
switch (item) {
|
|
|
case 1:
|
|
|
this.setState({ editName: true });
|
|
|
+ setTimeout(()=>{this.refs.name.focus()},10)
|
|
|
break;
|
|
|
case 2:
|
|
|
this.setState({ editPhoto: true });
|
|
|
+ setTimeout(()=>{this.refs.photo.focus()},10)
|
|
|
break;
|
|
|
case 3:
|
|
|
this.setState({ editEmail: true });
|
|
|
+ setTimeout(()=>{this.refs.email.focus()},10)
|
|
|
break;
|
|
|
case 4:
|
|
|
this.setState({ editNickname: true });
|
|
|
+ setTimeout(()=>{this.refs.nickname.focus()},10)
|
|
|
break;
|
|
|
}
|
|
|
this.enterFun(item);
|
|
@@ -230,6 +235,7 @@ class Account extends React.Component {
|
|
|
onBlur={(e) => {
|
|
|
this.saveFun(1);
|
|
|
}}
|
|
|
+ ref="name"
|
|
|
placeholder="请填写注册名称"
|
|
|
onChange={(e) => {
|
|
|
this.setState({ name: e.target.value });
|
|
@@ -261,6 +267,7 @@ class Account extends React.Component {
|
|
|
onBlur={(e) => {
|
|
|
this.saveFun(2);
|
|
|
}}
|
|
|
+ ref="photo"
|
|
|
placeholder="请填写注册手机号码"
|
|
|
onChange={(e) => {
|
|
|
this.setState({ photo: e.target.value });
|
|
@@ -290,6 +297,7 @@ class Account extends React.Component {
|
|
|
onBlur={(e) => {
|
|
|
this.saveFun(3);
|
|
|
}}
|
|
|
+ ref="email"
|
|
|
placeholder="请填写注册邮箱"
|
|
|
onChange={(e) => {
|
|
|
this.setState({ email: e.target.value });
|
|
@@ -319,6 +327,7 @@ class Account extends React.Component {
|
|
|
onBlur={(e) => {
|
|
|
this.saveFun(4);
|
|
|
}}
|
|
|
+ ref="nickname"
|
|
|
placeholder="请填写账号昵称"
|
|
|
onChange={(e) => {
|
|
|
this.setState({ nickname: e.target.value });
|
|
@@ -358,7 +367,7 @@ class Account extends React.Component {
|
|
|
</FormItem>
|
|
|
</Col>
|
|
|
</Row>
|
|
|
- <Row>
|
|
|
+ {/* <Row>
|
|
|
<Col span={8}>
|
|
|
<FormItem className="half-mid" {...formItemLayout} label="企业实名认证">
|
|
|
<span>{accountData.account}</span>
|
|
@@ -393,7 +402,7 @@ class Account extends React.Component {
|
|
|
<Col span={16}>
|
|
|
<span className="danger">实行个人实名认证后,您将享受技淘网提供的全方位的知识产权运营服务</span>
|
|
|
</Col>
|
|
|
- </Row>
|
|
|
+ </Row> */}
|
|
|
<Row>
|
|
|
<Col span={8}>
|
|
|
<FormItem className="half-mid" {...formItemLayout} label="科技专家认证">
|