Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
pro-blocks
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
duanledexianxianxian
pro-blocks
Commits
a5907a30
Commit
a5907a30
authored
May 02, 2018
by
jim
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix #1248 match params path
parent
6481a3af
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
3 deletions
+11
-3
src/layouts/BasicLayout.js
src/layouts/BasicLayout.js
+11
-3
No files found.
src/layouts/BasicLayout.js
View file @
a5907a30
...
@@ -6,6 +6,7 @@ import { connect } from 'dva';
...
@@ -6,6 +6,7 @@ import { connect } from 'dva';
import
{
Route
,
Redirect
,
Switch
,
routerRedux
}
from
'
dva/router
'
;
import
{
Route
,
Redirect
,
Switch
,
routerRedux
}
from
'
dva/router
'
;
import
{
ContainerQuery
}
from
'
react-container-query
'
;
import
{
ContainerQuery
}
from
'
react-container-query
'
;
import
classNames
from
'
classnames
'
;
import
classNames
from
'
classnames
'
;
import
pathToRegexp
from
'
path-to-regexp
'
;
import
{
enquireScreen
,
unenquireScreen
}
from
'
enquire-js
'
;
import
{
enquireScreen
,
unenquireScreen
}
from
'
enquire-js
'
;
import
GlobalHeader
from
'
../components/GlobalHeader
'
;
import
GlobalHeader
from
'
../components/GlobalHeader
'
;
import
GlobalFooter
from
'
../components/GlobalFooter
'
;
import
GlobalFooter
from
'
../components/GlobalFooter
'
;
...
@@ -108,15 +109,22 @@ class BasicLayout extends React.PureComponent {
...
@@ -108,15 +109,22 @@ class BasicLayout extends React.PureComponent {
type
:
'
user/fetchCurrent
'
,
type
:
'
user/fetchCurrent
'
,
});
});
}
}
componentWillUnmount
(){
componentWillUnmount
()
{
unenquireScreen
(
this
.
enquireHandler
);
unenquireScreen
(
this
.
enquireHandler
);
}
}
getPageTitle
()
{
getPageTitle
()
{
const
{
routerData
,
location
}
=
this
.
props
;
const
{
routerData
,
location
}
=
this
.
props
;
const
{
pathname
}
=
location
;
const
{
pathname
}
=
location
;
let
title
=
'
Ant Design Pro
'
;
let
title
=
'
Ant Design Pro
'
;
if
(
routerData
[
pathname
]
&&
routerData
[
pathname
].
name
)
{
let
currRouterData
=
null
;
title
=
`
${
routerData
[
pathname
].
name
}
- Ant Design Pro`
;
// match params path
Object
.
keys
(
routerData
).
forEach
(
key
=>
{
if
(
pathToRegexp
(
key
).
test
(
pathname
))
{
currRouterData
=
routerData
[
key
];
}
});
if
(
currRouterData
&&
currRouterData
.
name
)
{
title
=
`
${
currRouterData
.
name
}
- Ant Design Pro`
;
}
}
return
title
;
return
title
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment