|
@@ -30,6 +30,7 @@ import { splitUrl,getAuthState,getAdviserType } from '@/tools.js';
|
|
|
const FormItem = Form.Item;
|
|
|
const monthFormat = 'YYYY/MM';
|
|
|
//图片组件
|
|
|
+
|
|
|
const PicturesWall = React.createClass({
|
|
|
getInitialState() {
|
|
|
return {
|
|
@@ -281,7 +282,10 @@ const Expert = React.createClass({
|
|
|
if(this.state.authentication){
|
|
|
message.success((this.state.auditStatus=='0'||this.state.auditStatus=='3')&&(this.state.headPortraitUrl).length?'认证审核提交成功,请耐心等待。':'保存成功')
|
|
|
}else{
|
|
|
- message.success('个人认证成功。')
|
|
|
+ message.success('个人认证成功,2秒后跳转个人中心首页。')
|
|
|
+ setTimeout(()=>{
|
|
|
+ window.location.href= globalConfig.context+'/user/account/index.html'
|
|
|
+ },2000)
|
|
|
}
|
|
|
this.loadInformation();
|
|
|
} else {
|