import React, { Component } from 'react'; import {getImageUrl} from 'educoder'; import {Modal} from 'antd'; import axios from 'axios'; class AccountProfile extends Component { constructor(props) { super(props); this.state = { AccountProfiletype:false } } componentDidMount() { if(this.props.AccountProfiletype!=undefined){ this.setState({ AccountProfiletype:this.props.AccountProfiletype }) } axios.interceptors.response.use((response) => { if (response != undefined) if (response && response.data.status === 402) { this.setState({ AccountProfiletype: true }) } return response; }, (error) => { }); } gotoback=()=>{ if(this.props.AccountProfiletype!=undefined){ this.setState({ AccountProfiletype:false }) this.props.hideAccountProfile() }else{ window.location.href="/"; this.setState({ AccountProfiletype:false }) } } /** content: '您需要去完成您的职业认证,才能使用此功能', okText: '立即完成', okHref: '/account/certification' */ render() { const { content, okText, okHref } = this.props; return(

{content || '您需要去完善您的个人资料,才能使用此功能'}

this.gotoback()}>取消 {okText || '立即完善'}
) } } export default AccountProfile;