You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
2.9 KiB
59 lines
2.9 KiB
import React, { Component } from 'react';
|
|
import { Redirect } from 'react-router';
|
|
import { getImageUrl, toPath } from 'educoder'
|
|
import PropTypes from 'prop-types';
|
|
|
|
class NewFooter extends Component {
|
|
constructor(props) {
|
|
super(props)
|
|
|
|
}
|
|
|
|
componentWillReceiveProps(newProps, newContext) {
|
|
|
|
}
|
|
|
|
|
|
render() {
|
|
return (
|
|
<div className="newFooter edu-txt-center newContainers">
|
|
<div className="inner-footer_con">
|
|
<div className="footercon">
|
|
<div className="inline mt40 mb5">
|
|
<a href="/" className="fl" style={{height:'70px'}}>
|
|
<img alt="高校智能化教学与实训平台" src={getImageUrl(`images/educoder/headNavLogo.png?1526520218`)} width="70px">
|
|
</img>
|
|
</a>
|
|
<span className="fl color-grey-c cdefault font-28 ml22" style={{lineHeight:'74px'}}>EduCoder.net</span>
|
|
</div>
|
|
<ul className="clearfix inner-footernav">
|
|
<li><a href="/" className="fl" target="_blank">网站首页</a></li>
|
|
<li><a href={this.props.Footerdown===undefined?"":this.props.Footerdown.about_us} className="fl" target="_blank">关于我们</a></li>
|
|
<li><a href={this.props.Footerdown===undefined?"":this.props.Footerdown.connect_us} className="fl" target="_blank">联系我们</a></li>
|
|
<li><a href={this.props.Footerdown===undefined?"":this.props.Footerdown.cooperation_partner} className="fl" target="_blank">合作伙伴</a></li>
|
|
<li><a href={this.props.Footerdown===undefined?"":this.props.Footerdown.service_agreement} className="fl" target="_blank">服务协议</a></li>
|
|
<li><a href={this.props.Footerdown===undefined?"":this.props.Footerdown.help_center} className="fl" target="_blank">帮助中心</a></li>
|
|
<li><a href={this.props.Footerdown===undefined?"":this.props.Footerdown.feedback} className="fl" target="_blank">意见反馈</a></li>
|
|
</ul>
|
|
</div>
|
|
<div>
|
|
<p className="footer_con-p inline lineh-30 font-14">
|
|
<span className="font-18 fl">©</span> 2019 EduCoder
|
|
<a style={{"color":"#888"}} target="_blank" href="http://beian.miit.gov.cn/" className="ml15 mr15">湘ICP备17009477号</a>
|
|
<a style={{"color":"#888"}} target="_blank" href="http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=43019002000962" className="mr15">
|
|
<img className="vertical4" src={require('./beian.png')}/>湘公网安备43019002000962号
|
|
</a>
|
|
<a href="https://team.trustie.net" style={{"color":"#888"}}
|
|
target="_blank">Trustie</a> & IntelliDE inside. <span
|
|
className="mr15">版权所有 湖南智擎科技有限公司</span>
|
|
</p>
|
|
</div>
|
|
<div className="cl"></div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default NewFooter;
|