import React, { PureComponent } from 'react'; import { connect } from 'dva'; // import { routerRedux, Link } from 'dva/router'; import { Form, Button, Steps, Icon } from 'antd'; // import { NavLink } from "dva/router"; import './EnterpriseRegistrationResult.less'; import IconS from '../../components/IconS'; import { gup } from '../../utils/utils'; const { Step } = Steps; @connect(state => ({ register: state.register })) @Form.create() export default class EnterpriseRegistrationResult extends PureComponent { constructor(props, context) { super(props, context); this.state = { institution: gup('institution') || '' }; } /******************************生命周期******************************/ componentDidMount = () => {}; /******************************ajax请求******************************/ /******************************相关事件******************************/ /******************************render******************************/ render() { // const title =
提交成功
; // const actions = ( //
// // //
// ); return (
{/**/} 百保盾
改变工作 改变你
this.props.history.push('LogOn')} > 登录{' '}

企业注册

提交成功

{this.state.institution !== '0201' && (

恭喜您的入驻申请已提交
管理员账号和密码已发在联系手机上了,您现在可以开始体验啦。

)} {this.state.institution === '0201' && (

您的入驻申请已提交,管理员的账号及密码已发送至联系手机,稍后会有工作人员与您联系。

)}
); } }