import React from 'react' const styles = require('./register.less') import { Icon } from 'antd' interface ISendEmailTipsProps { email?: string goBack: () => any sendEmailOnceMore: () => any } export class SendEmailTips extends React.PureComponent { private goEmailNet = () => { const { email } = this.props let suffixNet = '' if (email) { suffixNet = email.split('@')[1] const net = email.indexOf('creditease') > 0 ? `https://email.${suffixNet}` : `https://mail.${suffixNet}` window.open(net) } } public render () { const { email } = this.props return (

请查收电子邮件

我们向 {email} 发送了一封电子邮件,请前往电子邮件中确认。

没收到? 重新发送电子邮件

返回上一步
) } } export default SendEmailTips