This commit is contained in:
unknown 2023-11-16 13:49:54 +08:00
parent 086bd5fd16
commit fc3ed72f21
3 changed files with 4 additions and 5 deletions

View File

@ -245,7 +245,7 @@
<workItem from="1587870344748" duration="138000" />
<workItem from="1587882941476" duration="4365000" />
<workItem from="1587891008299" duration="390000" />
<workItem from="1700037429191" duration="1219000" />
<workItem from="1700037429191" duration="3288000" />
</task>
<servers />
</component>

View File

@ -396,7 +396,7 @@ class App extends Component {
{/*成果*/}
<Route
path={"/achievementOverview"}
path={"/achievement"}
render={
(props) => {
return (<Achievement {...this.props} {...props} {...this.state} />)

View File

@ -43,15 +43,14 @@ class Index extends Component {
></Route>
<Route
path="/achievement"
path="/achievement/list"
render={(props) => (
<NoticeList {...this.props} {...props} />
)}
></Route>
<Route
path="/achievementOverview"
path="/achievement/overview"
render={(props) => (
<Overview {...this.props} {...props} />
)}