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
124802f1
Commit
124802f1
authored
Feb 14, 2018
by
ddcat1115
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
workplace use user model
parent
3f00025e
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
30 additions
and
51 deletions
+30
-51
src/common/router.js
src/common/router.js
+1
-1
src/routes/Dashboard/Workplace.js
src/routes/Dashboard/Workplace.js
+29
-47
src/routes/Dashboard/Workplace.less
src/routes/Dashboard/Workplace.less
+0
-3
No files found.
src/common/router.js
View file @
124802f1
...
...
@@ -80,7 +80,7 @@ export const getRouterData = (app) => {
component
:
dynamicWrapper
(
app
,
[
'
monitor
'
],
()
=>
import
(
'
../routes/Dashboard/Monitor
'
)),
},
'
/dashboard/workplace
'
:
{
component
:
dynamicWrapper
(
app
,
[
'
project
'
,
'
activities
'
,
'
chart
'
],
()
=>
import
(
'
../routes/Dashboard/Workplace
'
)),
component
:
dynamicWrapper
(
app
,
[
'
user
'
,
'
project
'
,
'
activities
'
,
'
chart
'
],
()
=>
import
(
'
../routes/Dashboard/Workplace
'
)),
// hideInBreadcrumb: true,
// name: '工作台',
// authority: 'admin',
...
...
src/routes/Dashboard/Workplace.js
View file @
124802f1
...
...
@@ -2,7 +2,7 @@ import React, { PureComponent } from 'react';
import
moment
from
'
moment
'
;
import
{
connect
}
from
'
dva
'
;
import
{
Link
}
from
'
dva/router
'
;
import
{
Row
,
Col
,
Card
,
List
,
Avatar
}
from
'
antd
'
;
import
{
Row
,
Col
,
Card
,
List
,
Avatar
,
Spin
}
from
'
antd
'
;
import
PageHeaderLayout
from
'
../../layouts/PageHeaderLayout
'
;
import
EditableLinkGroup
from
'
../../components/EditableLinkGroup
'
;
...
...
@@ -37,49 +37,21 @@ const links = [
},
];
const
members
=
[
{
id
:
'
members-1
'
,
title
:
'
科学搬砖组
'
,
logo
:
'
https://gw.alipayobjects.com/zos/rmsportal/BiazfanxmamNRoxxVxka.png
'
,
link
:
''
,
},
{
id
:
'
members-2
'
,
title
:
'
程序员日常
'
,
logo
:
'
https://gw.alipayobjects.com/zos/rmsportal/cnrhVkzwxjPwAaCfPbdc.png
'
,
link
:
''
,
},
{
id
:
'
members-3
'
,
title
:
'
设计天团
'
,
logo
:
'
https://gw.alipayobjects.com/zos/rmsportal/gaOngJwsRYRaVAuXXcmB.png
'
,
link
:
''
,
},
{
id
:
'
members-4
'
,
title
:
'
中二少女团
'
,
logo
:
'
https://gw.alipayobjects.com/zos/rmsportal/ubnKSIfAJTxIgXOKlciN.png
'
,
link
:
''
,
},
{
id
:
'
members-5
'
,
title
:
'
骗你学计算机
'
,
logo
:
'
https://gw.alipayobjects.com/zos/rmsportal/WhxKECPNujWoWEFNdnJE.png
'
,
link
:
''
,
},
];
@
connect
(({
project
,
activities
,
chart
,
loading
})
=>
({
@
connect
(({
user
,
project
,
activities
,
chart
,
loading
})
=>
({
currentUser
:
user
.
currentUser
,
project
,
activities
,
chart
,
currentUserLoading
:
loading
.
effects
[
'
user/fetchCurrent
'
],
projectLoading
:
loading
.
effects
[
'
project/fetchNotice
'
],
activitiesLoading
:
loading
.
effects
[
'
activities/fetchList
'
],
}))
export
default
class
Workplace
extends
PureComponent
{
componentDidMount
()
{
const
{
dispatch
}
=
this
.
props
;
dispatch
({
type
:
'
user/fetchCurrent
'
,
});
dispatch
({
type
:
'
project/fetchNotice
'
,
});
...
...
@@ -133,6 +105,8 @@ export default class Workplace extends PureComponent {
render
()
{
const
{
currentUser
,
currentUserLoading
,
project
:
{
notice
},
projectLoading
,
activitiesLoading
,
...
...
@@ -140,15 +114,22 @@ export default class Workplace extends PureComponent {
}
=
this
.
props
;
const
pageHeaderContent
=
(
<
Spin
spinning
=
{
currentUserLoading
}
>
{
currentUser
&&
Object
.
keys
(
currentUser
).
length
?
(
<
div
className
=
{
styles
.
pageHeaderContent
}
>
<
div
className
=
{
styles
.
avatar
}
>
<
Avatar
size
=
"
large
"
src
=
"
https://gw.alipayobjects.com/zos/rmsportal/BiazfanxmamNRoxxVxka.png
"
/>
<
Avatar
size
=
"
large
"
src
=
{
currentUser
.
avatar
}
/
>
<
/div
>
<
div
className
=
{
styles
.
content
}
>
<
div
className
=
{
styles
.
contentTitle
}
>
早安
,
曲丽丽
,
祝你开心每一天
!
<
/div
>
<
div
>
交互专家
|
蚂蚁金服
-
某某某事业群
-
某某平台部
-
某某技术部
-
UED
<
/div
>
<
div
className
=
{
styles
.
contentTitle
}
>
早安
,
{
currentUser
.
name
}
,
祝你开心每一天
!
<
/div
>
<
div
>
{
currentUser
.
title
}
|
{
currentUser
.
group
}
<
/div
>
<
/div
>
<
/div
>
)
:
null
}
<
/Spin
>
);
const
extraContent
=
(
...
...
@@ -251,15 +232,16 @@ export default class Workplace extends PureComponent {
bodyStyle
=
{{
paddingTop
:
12
,
paddingBottom
:
12
}}
bordered
=
{
false
}
title
=
"
团队
"
loading
=
{
projectLoading
}
>
<
div
className
=
{
styles
.
members
}
>
<
Row
gutter
=
{
48
}
>
{
members
.
map
(
item
=>
(
notice
.
map
(
item
=>
(
<
Col
span
=
{
12
}
key
=
{
`members-item-
${
item
.
id
}
`
}
>
<
Link
to
=
{
item
.
link
}
>
<
Link
to
=
{
item
.
href
}
>
<
Avatar
src
=
{
item
.
logo
}
size
=
"
small
"
/>
<
span
className
=
{
styles
.
member
}
>
{
item
.
title
}
<
/span
>
<
span
className
=
{
styles
.
member
}
>
{
item
.
member
}
<
/span
>
<
/Link
>
<
/Col
>
))
...
...
src/routes/Dashboard/Workplace.less
View file @
124802f1
...
...
@@ -86,18 +86,15 @@
a {
display: block;
margin: 12px 0;
line-height: 24px;
height: 24px;
.textOverflow();
.member {
font-size: @font-size-base;
color: @text-color;
line-height: 24px;
max-width: 100px;
vertical-align: top;
margin-left: 12px;
transition: all .3s;
display: inline-block;
.textOverflow();
}
&:hover {
...
...
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