mirror of
https://github.com/YMFE/yapi.git
synced 2025-02-23 13:59:28 +08:00
feat: 删除登录后的首页
This commit is contained in:
parent
9ffef3c41b
commit
25e6159b4b
@ -4,13 +4,10 @@ import { connect } from 'react-redux';
|
||||
import { Link } from 'react-router-dom';
|
||||
import { Row, Col, Button, Icon, Card } from 'antd';
|
||||
import PropTypes from "prop-types";
|
||||
import { withRouter } from 'react-router';
|
||||
import { logoSVG } from '../../common.js';
|
||||
|
||||
// import Intro from '../../components/Intro/Intro'
|
||||
import { changeMenuItem } from '../../reducer/modules/menu'
|
||||
|
||||
// const oneAnim = { y: '+=30', opacity: 0, type: 'from', ease: 'easeOutQuad' };
|
||||
|
||||
const HomeGuest = () => (
|
||||
<div className="g-body">
|
||||
<div className="m-bg">
|
||||
@ -170,7 +167,7 @@ HomeGuest.propTypes ={
|
||||
changeMenuItem
|
||||
}
|
||||
)
|
||||
|
||||
@withRouter
|
||||
class Home extends Component {
|
||||
constructor(props) {
|
||||
super(props)
|
||||
@ -181,6 +178,7 @@ class Home extends Component {
|
||||
static propTypes = {
|
||||
introList: PropTypes.array,
|
||||
login : PropTypes.bool,
|
||||
history: PropTypes.object,
|
||||
changeMenuItem : PropTypes.func
|
||||
}
|
||||
toStart = () =>{
|
||||
@ -190,21 +188,7 @@ class Home extends Component {
|
||||
const { login } = this.props;
|
||||
return (
|
||||
<div className="home-main">
|
||||
{login?
|
||||
(
|
||||
<div className="user-home">
|
||||
<div className="user-des">
|
||||
<p className="title">YAPI</p>
|
||||
<p className="des">一个高效,易用,可部署的Api管理系统</p>
|
||||
<div className="btn">
|
||||
<Button type="primary" size="large">
|
||||
<Link to="/group" onClick={this.toStart}>开始</Link>
|
||||
</Button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
: <HomeGuest introList={this.props.introList}/>}
|
||||
{login? this.props.history.push('/group') : <HomeGuest introList={this.props.introList}/>}
|
||||
<div className="row-tip">
|
||||
<div className="container">
|
||||
<div className="tip-title">
|
||||
|
Loading…
Reference in New Issue
Block a user