This commit is contained in:
caishi 2021-04-09 16:07:08 +08:00
parent 3802182b5c
commit eb6ba8edb7
16 changed files with 249 additions and 8 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 145 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 202 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 119 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 90 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 975 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 281 B

View File

@ -1,11 +1,117 @@
import React from 'react';
import React from "react";
import { CNotificationHOC } from "../../modules/courses/common/CNotificationHOC";
import { TPMIndexHOC } from "../../modules/tpm/TPMIndexHOC";
import { SnackbarHOC } from "educoder";
import "./Index.scss";
import two from "./Images/2.png";
import three from "./Images/3-1.png";
import threesub from "./Images/3-2.png";
import arrow from "./Images/a.png";
import four1 from "./Images/4-1.png";
import four2 from "./Images/4-2.png";
import four3 from "./Images/4-3.png";
import four4 from "./Images/4-4.png";
import four5 from "./Images/4-5.png";
import four6 from "./Images/4-6.png";
import four7 from "./Images/4-7.png";
import four8 from "./Images/4-8.png";
function Index(props){
return(
<div>iniiiiiiiiiiiiiiii</div>
)
function Index(props) {
return (
<div>
<div className="firstPanel">
<div className="firstPaneltxt">
<div>
<p>实践前沿研发理念先进研发工具为一体的软件开发平台</p>
<p>
Software development platform integrating practice, cutting-edge R
& D concept and advanced R & D tools
</p>
</div>
</div>
</div>
<div className="doubleBox">
<img src={two} alt="" />
<div className="m-left infobox">
<div className="titleLeft">
<p>JupyterLab极其强大的下一代notebook</p>
</div>
<div className="desc">
JupyterLab是Jupyter Notebook的全面升级事实上JupyterLab 是一个集JupyterNotebook文本编辑器终端以及各种个性化组件于一体的全能IDE作为一种基于web的集成开发环境你可以使用它编写notebook操作终端编辑markdown文本打开交互模式查看csv文件及图片等功能
</div>
<a href="http://39.105.62.120:60088/lab?" target="_blank" className="btnBox" style={{width:'160px'}}>
<img src={arrow} alt="" style={{ marginRight: "5px" }} />
<span>试用</span>
</a>
</div>
</div>
<div className="doubleBox" style={{padding:'160px 0px 120px 0px'}}>
<div className="infobox">
<div className="titleLeft">
<p>基于网络的软件开发群体化方法</p>
<span>持续构建协同共享可信的软件创新生态</span>
</div>
<div className="desc">
将大众化协同开发开放式资源共享持续性可信评估为核心的互联网大规模协同机理与软件开发工程化方法相结合形成面向群体化方法的软件智能开发服务环境
</div>
<img src={threesub} alt="" style={{marginTop:"100px"}}/>
</div>
<div style={{marginLeft:"50px",marginBottom:"100px"}}>
<img src={three} alt="" />
<a href="http://47.111.130.18:48088/projects" target="_blank" className="btnBox" style={{marginLeft:"43px"}}>
<img src={arrow} alt="" />
<span>查看更多</span>
</a>
</div>
</div>
<div className="thirdPanel">
<p className="mainTitle">协作开发平台</p>
<p className="subTitle">为您提供了软件开发的一切</p>
<ul className="thirdbox">
<li>
<img src={four1} alt="" />
<p className="bt">项目管理</p>
<p className="bdesc">敏捷模式缩短交付周期提升产品质量和协作效率</p>
</li>
<li>
<img src={four2} alt="" />
<p className="bt">配置管理</p>
<p className="bdesc">代码在线托管服务跨地域协同开发便于代码合入审查</p>
</li>
<li>
<img src={four3} alt="" />
<p className="bt">流水线</p>
<p className="bdesc">业务流程按需制定全周期业务集成实时监控流水线状态</p>
</li>
<li>
<img src={four4} alt="" />
<p className="bt">镜像制作</p>
<p className="bdesc">为IT开发者营造活跃和开放的社区环境提供即时通讯</p>
</li>
<li>
<img src={four5} alt="" />
<p className="bt">编译构建</p>
<p className="bdesc">混合语言并行构建支持Maven/web/移动终端/loT应用</p>
</li>
<li>
<img src={four6} alt="" />
<p className="bt">实时交互</p>
<p className="bdesc">项目进程管理应用于研发管理任务分配目标跟踪等让项目</p>
</li>
<li>
<img src={four7} alt="" />
<p className="bt">JupyterLab</p>
<p className="bdesc">基于Sonar的代码静态分析工具及时发现代码中的潜在隐患</p>
</li>
<li>
<img src={four8} alt="" />
<p className="bt">部署</p>
<p className="bdesc">一键式快捷并行部署基础组件和应用到开发测试生产环境</p>
</li>
</ul>
</div>
</div>
);
}
export default CNotificationHOC()(SnackbarHOC()(TPMIndexHOC(Index)));
export default CNotificationHOC()(SnackbarHOC()(TPMIndexHOC(Index)));

View File

@ -0,0 +1,135 @@
.firstPanel{
position: relative;
background:url('./Images/1.png') center no-repeat;
height: 556px;
width: 100%;
.firstPaneltxt{
width: 1200px;
height: 100%;
align-items: center;
text-align: left;
display: flex;
margin:0px auto;
&>div{
margin-bottom: 100px;
p{
max-width: 600px;
color:#fff;
font-size: 22px;
line-height: 28px;
&:first-child{
font-size: 30px;
line-height: 50px;
margin-bottom: 30px!important;
max-width: 500px;
}
}
}
}
}
.doubleBox{
display: flex;
padding-top:130px;
align-items: center;
justify-content: center;
.infobox{
max-width: 520px;
}
.m-left{
margin-left: 120px;
}
.desc{
font-size: 18px;
color: #888;
line-height: 25px;
margin-top: 30px;
word-break: break-all;
}
.btnBox{
display: block;
justify-content: center;
display: flex;
align-items: center;
width: 220px;
height: 80px;
color: #1890FF;
font-size: 18px;
background: #FFFFFF;
box-shadow: -10px 0px 26px 0px rgba(45, 21, 130, 0.1);
border-radius: 40px;
margin-top: 60px;
}
}
.titleLeft{
position: relative;
padding-left: 30px;
p{
font-size: 24px;
color:#199aff;
line-height: 38px;
}
span{
color: #3a3a3a;
font-size: 18px;
line-height: 20px;
margin-top: 5px;
display: block;
}
&::before{
position: absolute;
left: 0px;
height: 100%;
width: 19px;
top:0px;
content: "";
background-color: #199aff;
}
}
.thirdPanel{
width: 1200px;
margin:100px auto 300px;
.mainTitle{
height: 48px;
font-size: 36px;
color: #333333;
line-height: 48px;
text-align: center;
}
.subTitle{
height: 20px;
font-size: 18px;
color: #666666;
line-height: 20px;
margin-top: 20px;
text-align: center;
}
.thirdbox{
display: flex;
flex-wrap: wrap;
margin-top: 50px;
li{
width: 22%;
margin:42px 1.5% ;
background: #FFFFFF;
box-shadow: 0px 0px 22px 0px rgba(45, 21, 130, 0.06);
border-radius: 20px;
padding:50px 30px;
&:hover{
box-shadow: 0px 0px 40px 0px rgba(24, 144, 255, 0.3);
}
.bt{
font-size: 24px;
color: #333333;
line-height: 26px;
margin-top:36px;
}
.bdesc{
font-size: 16px;
color: #666666;
line-height: 20px;
margin-top:20px;
}
}
}
}

View File

@ -75,7 +75,7 @@ function DetailBanner({ history,list , owner , projectsId , isManager , url , pa
</li>
:""
}
{
{/* {
item.menu_name === "resources" &&
<li className={pathname==="source" ? "active" : ""}>
<Link to={{ pathname: `/projects/${owner}/${projectsId}/source`, state }}>
@ -84,7 +84,7 @@ function DetailBanner({ history,list , owner , projectsId , isManager , url , pa
{projectDetail && projectDetail.source_count ? <span className="num">{projectDetail.source_count}</span> :""}
</Link>
</li>
}
} */}
{
item.menu_name === "versions" &&
<li className={pathname==="milestones" ? "active" : ""}>