forked from Gitlink/forgeplus-react
同步密码弹窗问题
This commit is contained in:
parent
0552ac4b9a
commit
cc093b6ddf
|
@ -1,5 +1,5 @@
|
||||||
import React , {forwardRef, useEffect} from 'react';
|
import React , {forwardRef, useEffect} from 'react';
|
||||||
import { Modal , Form , Input , Button } from 'antd';
|
import { Modal , Form , Input , Button , message} from 'antd';
|
||||||
import './EAccount.scss';
|
import './EAccount.scss';
|
||||||
import axios from 'axios';
|
import axios from 'axios';
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@ import React from 'react';
|
||||||
import Header from '../../forge/Head/Header'
|
import Header from '../../forge/Head/Header'
|
||||||
import NewFooter from '../../forge/Head/Footer';
|
import NewFooter from '../../forge/Head/Footer';
|
||||||
import axios from 'axios';
|
import axios from 'axios';
|
||||||
import { Spin } from 'antd';
|
import { Spin , message } from 'antd';
|
||||||
import './TPMIndex.css';
|
import './TPMIndex.css';
|
||||||
import LoginDialog from '../login/LoginDialog';
|
import LoginDialog from '../login/LoginDialog';
|
||||||
import EducoderAccount from '../../forge/Component/EducoderAccount';
|
import EducoderAccount from '../../forge/Component/EducoderAccount';
|
||||||
|
@ -170,7 +170,7 @@ export function TPMIndexHOC(WrappedComponent) {
|
||||||
completeProfile:response.data.profile_completed
|
completeProfile:response.data.profile_completed
|
||||||
})
|
})
|
||||||
if(response.data && response.data.login){
|
if(response.data && response.data.login){
|
||||||
if(response.data.need_edit_info){
|
if(!response.data.has_gitea_user){
|
||||||
this.setState({
|
this.setState({
|
||||||
giteaVisible:true,
|
giteaVisible:true,
|
||||||
email:response.data.email
|
email:response.data.email
|
||||||
|
@ -252,7 +252,16 @@ export function TPMIndexHOC(WrappedComponent) {
|
||||||
login={current_user && current_user.login}
|
login={current_user && current_user.login}
|
||||||
hideSystemNotice={this.hideSystemNotice}
|
hideSystemNotice={this.hideSystemNotice}
|
||||||
/>
|
/>
|
||||||
<EducoderAccount visible={giteaVisible} email={email} onOk={this.onOk}/>
|
<EducoderAccount
|
||||||
|
visible={giteaVisible}
|
||||||
|
email={email}
|
||||||
|
isCancel={false}
|
||||||
|
onOk={this.onOk}
|
||||||
|
onCancel={()=>{
|
||||||
|
message.info('未填邮箱及密码,当前功能禁止使用');
|
||||||
|
}}
|
||||||
|
current_user={current_user}
|
||||||
|
/>
|
||||||
<ProfileModal
|
<ProfileModal
|
||||||
visible={!completeProfile && showCP}
|
visible={!completeProfile && showCP}
|
||||||
onCancel={()=>{this.setState({showCP:false})}}
|
onCancel={()=>{this.setState({showCP:false})}}
|
||||||
|
|
Loading…
Reference in New Issue