import React, {Component} from 'react'; import {Button, Layout, Input, Form} from 'antd'; import axios from 'axios'; import {getImageUrl} from 'educoder'; import mycompetotionchild from './mycompetotionchild.css'; import {getHiddenName} from "../../../../user/account/AccountBasicEdit"; import '../../../../courses/css/Courses.css' import RealNameCertificationModal from "../../../../user/modal/RealNameCertificationModal"; export const identityMap = {"teacher": "教师", "student": "学生", "professional": "专业人士"} class Phonenumberverification extends Component { constructor(props) { super(props) this.state = { updating: '', secondsFlag: false, seconds: 60, phonebool: false, emailbool: false, formationdata: [], bank_account_editable: false, leader: false, bank_account: undefined, certification: 1 } } componentDidMount() { window.document.title = '竞赛'; // console.log("获取用户信息"); // console.log(this.props); } // 绑定手机 onPhoneSubmit = () => { this.props.form.validateFieldsAndScroll((err, values) => { if (!err) { let {id} = this.props.userdata; let reg = /^1\d{10}$/; if (reg.test(values.phone)) { let url = `/users/accounts/${id}/phone_bind.json` axios.post((url), { phone: values.phone, code: values.phoneValidateCode }).then((result) => { if (result) { this.props.showNotification("手机号码绑定成功!"); this.props.hideUpdating() this.props.getdata(id); } }).catch((error) => { console.log(error); }) } else { this.props.showNotification("请输入有效的11位手机号码"); } } }) } //取消编辑 hideUpdating = (i) => { if (i === 1) { this.props.hideUpdating(1); } else if (i === 2) { this.props.hideUpdating(2); } else if (i === 3) { } } // 获取验证码 getCode = (index) => { let url = `/accounts/get_verification_code.json` let login = ''; let values = this.props.form.getFieldsValue(); if (index == 3) { //绑定手机号码 login = values.phone; let reg = /^1\d{10}$/; if (reg.test(login) == false) { this.props.showNotification(`请先输入正确的手机号码`); return; } } else if (index == 4) { // 绑定邮箱 login = values.email; let reg = /^[a-zA-Z0-9]+([.\-_\\]*[a-zA-Z0-9])*@([a-z0-9]+[-a-z0-9]*[a-z0-9]+.){1,63}[a-z0-9]+$/; if (reg.test(login) == false) { this.props.showNotification(`请先输入正确的邮箱地址`); return; } } let type = index; if (!login) { this.props.showNotification(`请先输入${index == 3 ? "手机号码" : "邮箱地址"}`); return; } axios.get((url), { params: { login, type } }).then((result) => { if (result) { // 倒计时 this.setState({ secondsFlag: true }) this.remainTime(); } }).catch((error) => { console.log(error); }) } // 获取验证码倒计时 remainTime = () => { this.setState({ seconds: 60 }) this.timer = setInterval(() => { let {seconds} = this.state; let s = parseInt(seconds) - 1; if (s > -1) { this.setState({ seconds: s }) } else { this.setState({ secondsFlag: false }) clearInterval(this.timer); } }, 1000) } phonebools = () => { this.setState({ phonebool: true }) } render() { const {getFieldDecorator} = this.props.form; const {updating, seconds, secondsFlag, phonebool, emailbool, certification, formationdata, bank_account_editable, leader, bank_account} = this.state const {basicInfo} = this.props console.log(emailbool); return (
{getFieldDecorator('phone', { rules: [{ // initialValue: this.state.cityDefaultValue, required: true, message: `请输入要${basicInfo.phone ? '更换' : '绑定'}的手机号码`, }], })( )} {getFieldDecorator('phoneValidateCode', { rules: [{ // initialValue: this.state.cityDefaultValue, required: true, message: '请输入手机获取的验证码', }], })( )}
) } } const Phonenumberverifications = Form.create({name: 'Phonenumberverification'})(Phonenumberverification); export default Phonenumberverifications;