Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
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
e0cf61e2
You need to sign in or sign up before continuing.
Commit
e0cf61e2
authored
Mar 02, 2018
by
ddcat1115
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update userCenter
parent
92293e44
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
83 additions
and
29 deletions
+83
-29
.roadhogrc.mock.js
.roadhogrc.mock.js
+1
-1
mock/api.js
mock/api.js
+1
-1
src/routes/Dashboard/Workplace.less
src/routes/Dashboard/Workplace.less
+3
-6
src/routes/List/Projects.js
src/routes/List/Projects.js
+1
-1
src/routes/UserCenter.js
src/routes/UserCenter.js
+65
-14
src/routes/UserCenter.less
src/routes/UserCenter.less
+10
-4
src/utils/utils.js
src/utils/utils.js
+2
-2
No files found.
.roadhogrc.mock.js
View file @
e0cf61e2
...
...
@@ -31,7 +31,7 @@ const proxy = {
profile
:
'
简单的介绍下自己
'
,
signature
:
'
海纳百川,有容乃大
'
,
title
:
'
交互专家
'
,
group
:
'
蚂蚁金服
-平台数据技术事业群-基础平台部-用户体验技术部-
UED
'
,
group
:
'
蚂蚁金服
-某某某事业群-某某平台部-某某技术部-
UED
'
,
tags
:
[{
key
:
'
0
'
,
label
:
'
很有想法的
'
,
...
...
mock/api.js
View file @
e0cf61e2
...
...
@@ -37,7 +37,7 @@ const avatars2 = [
const
covers
=
[
'
https://gw.alipayobjects.com/zos/rmsportal/uMfMFlvUuceEyPpotzlq.png
'
,
'
https://gw.alipayobjects.com/zos/rmsportal/iZBVOIhGJiAnhplqjvZW.png
'
,
'
https://gw.alipayobjects.com/zos/rmsportal/
uVZonEtjWwmUZPBQfycs
.png
'
,
'
https://gw.alipayobjects.com/zos/rmsportal/
iXjVmWVHbCJAyqvDxdtx
.png
'
,
'
https://gw.alipayobjects.com/zos/rmsportal/gLaIAoVWTtLbBWZNYEMg.png
'
,
];
const
desc
=
[
...
...
src/routes/Dashboard/Workplace.less
View file @
e0cf61e2
...
...
@@ -87,20 +87,17 @@
display: block;
margin: 12px 0;
height: 24px;
color: @text-color;
transition: all .3s;
.textOverflow();
.member {
font-size: @font-size-base;
color: @text-color;
line-height: 24px;
vertical-align: top;
margin-left: 12px;
transition: all .3s;
.textOverflow();
}
&:hover {
span {
color: @primary-color;
}
color: @primary-color;
}
}
}
...
...
src/routes/List/Projects.js
View file @
e0cf61e2
...
...
@@ -62,7 +62,7 @@ export default class CoverCardList extends PureComponent {
<
Card
className
=
{
styles
.
card
}
hoverable
cover
=
{
<
img
alt
=
{
item
.
title
}
src
=
{
item
.
cover
}
height
=
{
154
}
/>
}
cover
=
{
<
img
alt
=
{
item
.
title
}
src
=
{
item
.
cover
}
/>
}
>
<
Card
.
Meta
title
=
{
<
a
href
=
"
#
"
>
{
item
.
title
}
<
/a>
}
...
...
src/routes/UserCenter.js
View file @
e0cf61e2
import
React
,
{
PureComponent
}
from
'
react
'
;
import
{
connect
}
from
'
dva
'
;
import
{
Link
}
from
'
dva/router
'
;
import
moment
from
'
moment
'
;
import
numeral
from
'
numeral
'
;
import
{
List
,
Card
,
Row
,
Col
,
Icon
,
Dropdown
,
Menu
,
Avatar
,
Tag
,
Divider
,
Tooltip
,
Spin
}
from
'
antd
'
;
Menu
,
Avatar
,
Tag
,
Divider
,
Tooltip
,
Spin
,
Input
}
from
'
antd
'
;
import
AvatarList
from
'
../components/AvatarList
'
;
import
{
formatWan
}
from
'
../utils/utils
'
;
import
styles
from
'
./UserCenter.less
'
;
...
...
@@ -22,6 +23,9 @@ import stylesProjects from './List/Projects.less';
export
default
class
UserCenter
extends
PureComponent
{
state
=
{
key
:
'
article
'
,
newTags
:
[],
inputVisible
:
false
,
inputValue
:
''
,
}
componentDidMount
()
{
...
...
@@ -44,6 +48,32 @@ export default class UserCenter extends PureComponent {
this
.
setState
({
key
});
}
showInput
=
()
=>
{
this
.
setState
({
inputVisible
:
true
},
()
=>
this
.
input
.
focus
());
}
saveInputRef
=
(
input
)
=>
{
this
.
input
=
input
;
}
handleInputChange
=
(
e
)
=>
{
this
.
setState
({
inputValue
:
e
.
target
.
value
});
}
handleInputConfirm
=
()
=>
{
const
{
state
}
=
this
;
const
{
inputValue
}
=
state
;
let
{
newTags
}
=
state
;
if
(
inputValue
&&
newTags
.
filter
(
tag
=>
tag
.
label
===
inputValue
).
length
===
0
)
{
newTags
=
[...
newTags
,
{
key
:
`new-
${
newTags
.
length
}
`
,
label
:
inputValue
}];
}
this
.
setState
({
newTags
,
inputVisible
:
false
,
inputValue
:
''
,
});
}
renderArticles
=
(
list
,
loading
)
=>
{
const
IconText
=
({
type
,
text
})
=>
(
<
span
>
...
...
@@ -171,7 +201,7 @@ export default class UserCenter extends PureComponent {
<
Card
className
=
{
stylesProjects
.
card
}
hoverable
cover
=
{
<
img
alt
=
{
item
.
title
}
src
=
{
item
.
cover
}
height
=
{
154
}
/>
}
cover
=
{
<
img
alt
=
{
item
.
title
}
src
=
{
item
.
cover
}
/>
}
>
<
Card
.
Meta
title
=
{
<
a
href
=
"
#
"
>
{
item
.
title
}
<
/a>
}
...
...
@@ -201,17 +231,18 @@ export default class UserCenter extends PureComponent {
}
render
()
{
const
{
key
,
newTags
,
inputVisible
,
inputValue
}
=
this
.
state
;
const
{
list
:
{
list
},
listLoading
,
currentUser
,
currentUserLoading
,
project
:
{
notice
},
projectLoading
}
=
this
.
props
;
const
operationTabList
=
[{
key
:
'
article
'
,
tab
:
'
文章(8)
'
,
tab
:
<
span
>
文章
<
span
style
=
{{
fontSize
:
14
}}
>
(
8
)
<
/span></
span
>
,
},
{
key
:
'
application
'
,
tab
:
'
应用(8)
'
,
tab
:
<
span
>
应用
<
span
style
=
{{
fontSize
:
14
}}
>
(
8
)
<
/span></
span
>
,
},
{
key
:
'
project
'
,
tab
:
'
项目(8)
'
,
tab
:
<
span
>
项目
<
span
style
=
{{
fontSize
:
14
}}
>
(
8
)
<
/span></
span
>
,
}];
const
contentMap
=
{
article
:
this
.
renderArticles
(
list
,
listLoading
),
...
...
@@ -249,22 +280,42 @@ export default class UserCenter extends PureComponent {
<
div
className
=
{
styles
.
tags
}
>
<
div
className
=
{
styles
.
tagsTitle
}
>
标签
<
/div
>
{
currentUser
.
tags
.
map
(
item
=>
<
Tag
key
=
{
item
.
key
}
>
{
item
.
label
}
<
/Tag>
)
currentUser
.
tags
.
concat
(
newTags
).
map
(
item
=>
<
Tag
key
=
{
item
.
key
}
>
{
item
.
label
}
<
/Tag>
)
}
<
Tag
style
=
{{
background
:
'
#fff
'
,
borderStyle
:
'
dashed
'
}}
>
<
Icon
type
=
"
plus
"
/>
<
/Tag
>
{
inputVisible
&&
(
<
Input
ref
=
{
this
.
saveInputRef
}
type
=
"
text
"
size
=
"
small
"
style
=
{{
width
:
78
}}
value
=
{
inputValue
}
onChange
=
{
this
.
handleInputChange
}
onBlur
=
{
this
.
handleInputConfirm
}
onPressEnter
=
{
this
.
handleInputConfirm
}
/
>
)}
{
!
inputVisible
&&
(
<
Tag
onClick
=
{
this
.
showInput
}
style
=
{{
background
:
'
#fff
'
,
borderStyle
:
'
dashed
'
}}
>
<
Icon
type
=
"
plus
"
/>
<
/Tag
>
)}
<
/div
>
<
Divider
dashed
/>
<
Divider
style
=
{{
marginTop
:
16
}}
dashed
/>
<
div
className
=
{
styles
.
team
}
>
<
div
className
=
{
styles
.
teamTitle
}
>
团队
<
/div
>
<
Spin
spinning
=
{
projectLoading
}
>
<
Row
gutter
=
{
36
}
>
{
notice
.
map
(
item
=>
(
<
Col
key
=
{
item
.
id
}
className
=
{
styles
.
item
}
lg
=
{
24
}
xl
=
{
12
}
>
<
Avatar
size
=
"
small
"
src
=
{
item
.
logo
}
/
>
{
item
.
member
}
<
Col
key
=
{
item
.
id
}
lg
=
{
24
}
xl
=
{
12
}
>
<
Link
to
=
{
item
.
href
}
>
<
Avatar
size
=
"
small
"
src
=
{
item
.
logo
}
/
>
{
item
.
member
}
<
/Link
>
<
/Col
>
))
}
...
...
@@ -283,7 +334,7 @@ export default class UserCenter extends PureComponent {
tabList
=
{
operationTabList
}
onTabChange
=
{
this
.
onTabChange
}
>
{
contentMap
[
this
.
state
.
key
]}
{
contentMap
[
key
]}
<
/Card
>
<
/Col
>
<
/Row
>
...
...
src/routes/UserCenter.less
View file @
e0cf61e2
@import '~antd/lib/style/themes/default.less';
@import "../utils/utils.less";
.avatarHolder {
text-align: center;
...
...
@@ -73,11 +74,16 @@
}
}
.item {
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
a {
display: block;
margin-bottom: 24px;
color: @text-color;
transition: color .3s;
.textOverflow();
&:hover {
color: @primary-color;
}
}
}
...
...
src/utils/utils.js
View file @
e0cf61e2
...
...
@@ -169,7 +169,7 @@ export function formatWan(val) {
result
=
(
<
span
>
{
result
}
<
em
styles
=
{{
<
span
styles
=
{{
position
:
'
relative
'
,
top
:
-
2
,
fontSize
:
14
,
...
...
@@ -179,7 +179,7 @@ export function formatWan(val) {
}}
>
万
<
/
em
>
<
/
span
>
<
/span
>
);
}
...
...
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