This commit is contained in:
caishi 2022-04-18 09:22:29 +08:00
parent 1fd7a21e9f
commit ee5bddaa75
3 changed files with 15 additions and 1 deletions

View File

@ -395,6 +395,14 @@ class App extends Component {
}
}>
</Route>
<Route
path={"/"}
render={
(props) => {
return (<Projects {...this.props} {...props} {...this.state} />)
}
}>
</Route>
{/* 判断为用户/组织,并进入对应页面 */}
{

View File

@ -65,6 +65,12 @@ class Index extends Component {
<ProjectIndex {...this.props} {...props} />
)}
></Route>
<Route
path="/"
render={(props) => (
<ProjectIndex {...this.props} {...props} />
)}
></Route>
</Switch>
</div>
);

View File

@ -25,7 +25,7 @@ body>.-task-title {
.newHeaders{
max-width: unset;
width: 100%;
height:60px;
height:64px;
min-width: 1200px;
z-index: 1000;
background:#001529;