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
A
ant-design-pro
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
ant-design-pro
Commits
64b5984a
Commit
64b5984a
authored
Jul 07, 2018
by
xiaohu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add user layout
parent
14bed53b
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
35 additions
and
16 deletions
+35
-16
src/components/Authorized/AuthorizedRoute.js
src/components/Authorized/AuthorizedRoute.js
+1
-0
src/layouts/UserLayout.js
src/layouts/UserLayout.js
+16
-13
src/pages/User/Login.js
src/pages/User/Login.js
+1
-1
src/pages/User/Register.js
src/pages/User/Register.js
+2
-2
src/pages/User/_layout.js
src/pages/User/_layout.js
+15
-0
No files found.
src/components/Authorized/AuthorizedRoute.js
View file @
64b5984a
...
@@ -4,6 +4,7 @@ import Authorized from './Authorized';
...
@@ -4,6 +4,7 @@ import Authorized from './Authorized';
class
AuthorizedRoute
extends
React
.
Component
{
class
AuthorizedRoute
extends
React
.
Component
{
render
()
{
render
()
{
// TODO: umi只会返回render和rest
const
{
component
:
Component
,
render
,
authority
,
redirectPath
,
...
rest
}
=
this
.
props
;
const
{
component
:
Component
,
render
,
authority
,
redirectPath
,
...
rest
}
=
this
.
props
;
return
(
return
(
<
Authorized
<
Authorized
...
...
src/layouts/UserLayout.js
View file @
64b5984a
import
React
,
{
Fragment
}
from
'
react
'
;
import
React
,
{
Fragment
}
from
'
react
'
;
import
{
Link
,
Redirect
,
Switch
,
Route
}
from
'
dva/router
'
;
import
{
Link
}
from
'
dva/router
'
;
import
DocumentTitle
from
'
react-document-title
'
;
import
DocumentTitle
from
'
react-document-title
'
;
import
{
Icon
}
from
'
antd
'
;
import
{
Icon
}
from
'
antd
'
;
import
GlobalFooter
from
'
../components/GlobalFooter
'
;
import
GlobalFooter
from
'
../components/GlobalFooter
'
;
import
styles
from
'
./UserLayout.less
'
;
import
styles
from
'
./UserLayout.less
'
;
import
logo
from
'
../assets/logo.svg
'
;
import
logo
from
'
../assets/logo.svg
'
;
import
{
getRoutes
,
getPageQuery
,
getQueryPath
}
from
'
../utils/utils
'
;
// TODO:remove
// import { getRoutes, getPageQuery, getQueryPath } from '../utils/utils';
const
links
=
[
const
links
=
[
{
{
...
@@ -30,14 +32,14 @@ const copyright = (
...
@@ -30,14 +32,14 @@ const copyright = (
Copyright
<
Icon
type
=
"
copyright
"
/>
2018
蚂蚁金服体验技术部出品
Copyright
<
Icon
type
=
"
copyright
"
/>
2018
蚂蚁金服体验技术部出品
<
/Fragment
>
<
/Fragment
>
);
);
// TODO:remove
function
getLoginPathWithRedirectPath
()
{
//
function getLoginPathWithRedirectPath() {
const
params
=
getPageQuery
();
//
const params = getPageQuery();
const
{
redirect
}
=
params
;
//
const { redirect } = params;
return
getQueryPath
(
'
/user/login
'
,
{
//
return getQueryPath('/user/login', {
redirect
,
//
redirect,
});
//
});
}
//
}
class
UserLayout
extends
React
.
PureComponent
{
class
UserLayout
extends
React
.
PureComponent
{
getPageTitle
()
{
getPageTitle
()
{
...
@@ -51,7 +53,7 @@ class UserLayout extends React.PureComponent {
...
@@ -51,7 +53,7 @@ class UserLayout extends React.PureComponent {
}
}
render
()
{
render
()
{
const
{
routerData
,
match
}
=
this
.
props
;
const
{
children
}
=
this
.
props
;
return
(
return
(
<
DocumentTitle
title
=
{
this
.
getPageTitle
()}
>
<
DocumentTitle
title
=
{
this
.
getPageTitle
()}
>
<
div
className
=
{
styles
.
container
}
>
<
div
className
=
{
styles
.
container
}
>
...
@@ -65,7 +67,8 @@ class UserLayout extends React.PureComponent {
...
@@ -65,7 +67,8 @@ class UserLayout extends React.PureComponent {
<
/div
>
<
/div
>
<
div
className
=
{
styles
.
desc
}
>
Ant
Design
是西湖区最具影响力的
Web
设计规范
<
/div
>
<
div
className
=
{
styles
.
desc
}
>
Ant
Design
是西湖区最具影响力的
Web
设计规范
<
/div
>
<
/div
>
<
/div
>
<
Switch
>
{
children
}
{
/* <Switch>
{getRoutes(match.path, routerData).map(item => (
{getRoutes(match.path, routerData).map(item => (
<Route
<Route
key={item.key}
key={item.key}
...
@@ -75,7 +78,7 @@ class UserLayout extends React.PureComponent {
...
@@ -75,7 +78,7 @@ class UserLayout extends React.PureComponent {
/>
/>
))}
))}
<Redirect from="/user" to={getLoginPathWithRedirectPath()} />
<Redirect from="/user" to={getLoginPathWithRedirectPath()} />
<
/Switch
>
</Switch>
*/
}
<
/div
>
<
/div
>
<
GlobalFooter
links
=
{
links
}
copyright
=
{
copyright
}
/
>
<
GlobalFooter
links
=
{
links
}
copyright
=
{
copyright
}
/
>
<
/div
>
<
/div
>
...
...
src/pages/User/Login.js
View file @
64b5984a
...
@@ -112,7 +112,7 @@ export default class LoginPage extends Component {
...
@@ -112,7 +112,7 @@ export default class LoginPage extends Component {
<
Icon
className
=
{
styles
.
icon
}
type
=
"
alipay-circle
"
/>
<
Icon
className
=
{
styles
.
icon
}
type
=
"
alipay-circle
"
/>
<
Icon
className
=
{
styles
.
icon
}
type
=
"
taobao-circle
"
/>
<
Icon
className
=
{
styles
.
icon
}
type
=
"
taobao-circle
"
/>
<
Icon
className
=
{
styles
.
icon
}
type
=
"
weibo-circle
"
/>
<
Icon
className
=
{
styles
.
icon
}
type
=
"
weibo-circle
"
/>
<
Link
className
=
{
styles
.
register
}
to
=
"
/
user/r
egister
"
>
<
Link
className
=
{
styles
.
register
}
to
=
"
/
User/R
egister
"
>
注册账户
注册账户
<
/Link
>
<
/Link
>
<
/div
>
<
/div
>
...
...
src/pages/User/Register.js
View file @
64b5984a
...
@@ -40,7 +40,7 @@ export default class Register extends Component {
...
@@ -40,7 +40,7 @@ export default class Register extends Component {
if
(
register
.
status
===
'
ok
'
)
{
if
(
register
.
status
===
'
ok
'
)
{
dispatch
(
dispatch
(
routerRedux
.
push
({
routerRedux
.
push
({
pathname
:
'
/
user/register-r
esult
'
,
pathname
:
'
/
User/RegisterR
esult
'
,
state
:
{
state
:
{
account
,
account
,
},
},
...
@@ -279,7 +279,7 @@ export default class Register extends Component {
...
@@ -279,7 +279,7 @@ export default class Register extends Component {
>
>
注册
注册
<
/Button
>
<
/Button
>
<
Link
className
=
{
styles
.
login
}
to
=
"
/
user/l
ogin
"
>
<
Link
className
=
{
styles
.
login
}
to
=
"
/
User/L
ogin
"
>
使用已有账户登录
使用已有账户登录
<
/Link
>
<
/Link
>
<
/FormItem
>
<
/FormItem
>
...
...
src/pages/User/_layout.js
0 → 100644
View file @
64b5984a
import
React
from
'
react
'
;
import
{
getRouterData
}
from
'
common/router
'
;
import
{
getMenuData
}
from
'
common/menu
'
;
import
UserLayout
from
'
../../layouts/UserLayout
'
;
export
default
props
=>
{
const
{
children
,
location
}
=
props
;
const
routerData
=
getRouterData
({});
const
menuData
=
getMenuData
({});
return
(
<
UserLayout
routerData
=
{
routerData
}
menuData
=
{
menuData
}
location
=
{
location
}
{...
props
}
>
{
children
}
<
/UserLayout
>
);
};
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