This commit is contained in:
caishi 2023-07-12 09:25:54 +08:00
parent bcb8896fec
commit 5f3dff0bf2
1 changed files with 40 additions and 0 deletions

View File

@ -0,0 +1,40 @@
import React ,{ useEffect , useState } from 'react';
import { Modal , Form } from 'antd';
import './index.scss';
function ForkSelfModal(props){
const { visible , onCancel , onSuccess } = props;
return(
<Modal
visible={visible}
onCancel={onCancel}
title={'Fork项目'}
closable
width="648px"
>
<div className="self_box">
<p style={{color:"#1f2329",fontSize:"15px"}}>您希望将项目Fork至何处</p>
<div className="self_b_list">
<div className="self_b_card">
<ul className="s_b_ul">
<img className="info_img" src="https://testforgeplus.trustie.net/images/avatars/User/36480?t=1686645429" alt="" />
<li>
<p style={{marginBottom:'10px!important'}}>
<span className="s_info_name">蒋宇航</span>
<span className="s_info_tag onwer">个人</span>
<span style={{color:'rgba(216, 98, 7, 1)',marginLeft:"12px"}}><i className="iconfont icon-erciqueren_icon mr3 font-15"></i>存在同名/同标识项目</span>
</p>
<p style={{color:'#4c5b76'}}>handsome@qq.com</p>
</li>
</ul>
<div>
<p style={{color:'#202d40',marginTop:'18px'}}>当前用户已存在同名/同标识项目<a className="color-blue">https://www.gitlink.org.cn/forgeplus/issues/2615</a>使/fork</p>
</div>
</div>
</div>
</div>
</Modal>
)
}
export default ForkSelfModal;