import React from 'react'; import { Input, Button, Form, Icon, Spin, message, } from 'antd'; import './certify.less'; import ajax from 'jquery/src/ajax/xhr.js' import $ from 'jquery/src/ajax'; const Content = Form.create()(React.createClass({ getInitialState() { return { loading: false }; }, handleSubmit() { this.setState({ loading: true }); $.ajax({ method: "POST", dataType: "json", crossDomain: false, url: globalConfig.context + "/api/user/userNextPro", data: { process: 4 } }).done(function (data) { if (!data.error.length) { message.success('保存成功!'); this.props.changeStep(5); } else { message.warning(data.error[0].message); this.setState({ loading: false }); } }.bind(this)); }, // loadDate(){ // this.setState({ // loading:true // }); // $.ajax({ // method: "get", // dataType: "json", // url: globalConfig.context + "/api/user/userPro", // success: function (data) { // if (data.data) { // this.setState({ // bankCardNumber: data.data.bankCardNumber, // auditStatus: data.data.auditStatus // }); // }; // }.bind(this), // }).done(function (data) { // if (data.error && data.error.length) { // message.warning(data.error[0].message); // }; // this.setState({ // loading:false // }); // }.bind(this)); // }, // componentWillMount() { // this.loadDate(); // }, render() { const FormItem = Form.Item; const { getFieldDecorator } = this.props.form; const formItemLayout = { labelCol: { span: 4 }, wrapperCol: { span: 12 }, }; const _me = this; return (

信息提交成功

认证系统将会在1-2个工作日内审核您的认证信息,请您耐心等待!
); }, })); export default Content; // // //