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
3df1c08f
Commit
3df1c08f
authored
Apr 27, 2018
by
ZHAO Jinxiang
Committed by
ιεΈ
Apr 29, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add component's name
parent
48ad98c3
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
21 additions
and
7 deletions
+21
-7
src/components/DescriptionList/DescriptionList.js
src/components/DescriptionList/DescriptionList.js
+3
-1
src/components/Exception/index.js
src/components/Exception/index.js
+3
-1
src/components/GlobalFooter/index.js
src/components/GlobalFooter/index.js
+3
-1
src/components/Login/LoginSubmit.js
src/components/Login/LoginSubmit.js
+3
-1
src/components/NumberInfo/index.js
src/components/NumberInfo/index.js
+3
-1
src/components/SiderMenu/index.js
src/components/SiderMenu/index.js
+3
-1
src/components/StandardFormRow/index.js
src/components/StandardFormRow/index.js
+3
-1
No files found.
src/components/DescriptionList/DescriptionList.js
View file @
3df1c08f
...
...
@@ -3,7 +3,7 @@ import classNames from 'classnames';
import
{
Row
}
from
'
antd
'
;
import
styles
from
'
./index.less
'
;
export
default
({
const
DescriptionList
=
({
className
,
title
,
col
=
3
,
...
...
@@ -27,3 +27,5 @@ export default ({
<
/div
>
);
};
export
default
DescriptionList
;
src/components/Exception/index.js
View file @
3df1c08f
...
...
@@ -4,7 +4,7 @@ import { Button } from 'antd';
import
config
from
'
./typeConfig
'
;
import
styles
from
'
./index.less
'
;
export
default
({
className
,
linkElement
=
'
a
'
,
type
,
title
,
desc
,
img
,
actions
,
...
rest
})
=>
{
const
Exception
=
({
className
,
linkElement
=
'
a
'
,
type
,
title
,
desc
,
img
,
actions
,
...
rest
})
=>
{
const
pageType
=
type
in
config
?
type
:
'
404
'
;
const
clsString
=
classNames
(
styles
.
exception
,
className
);
return
(
...
...
@@ -33,3 +33,5 @@ export default ({ className, linkElement = 'a', type, title, desc, img, actions,
<
/div
>
);
};
export
default
Exception
;
src/components/GlobalFooter/index.js
View file @
3df1c08f
...
...
@@ -2,7 +2,7 @@ import React from 'react';
import
classNames
from
'
classnames
'
;
import
styles
from
'
./index.less
'
;
export
default
({
className
,
links
,
copyright
})
=>
{
const
GlobalFooter
=
({
className
,
links
,
copyright
})
=>
{
const
clsString
=
classNames
(
styles
.
globalFooter
,
className
);
return
(
<
div
className
=
{
clsString
}
>
...
...
@@ -19,3 +19,5 @@ export default ({ className, links, copyright }) => {
<
/div
>
);
};
export
default
GlobalFooter
;
src/components/Login/LoginSubmit.js
View file @
3df1c08f
...
...
@@ -5,7 +5,7 @@ import styles from './index.less';
const
FormItem
=
Form
.
Item
;
export
default
({
className
,
...
rest
})
=>
{
const
LoginSubmit
=
({
className
,
...
rest
})
=>
{
const
clsString
=
classNames
(
styles
.
submit
,
className
);
return
(
<
FormItem
>
...
...
@@ -13,3 +13,5 @@ export default ({ className, ...rest }) => {
<
/FormItem
>
);
};
export
default
LoginSubmit
;
src/components/NumberInfo/index.js
View file @
3df1c08f
...
...
@@ -3,7 +3,7 @@ import { Icon } from 'antd';
import
classNames
from
'
classnames
'
;
import
styles
from
'
./index.less
'
;
export
default
({
theme
,
title
,
subTitle
,
total
,
subTotal
,
status
,
suffix
,
gap
,
...
rest
})
=>
(
const
NumberInfo
=
({
theme
,
title
,
subTitle
,
total
,
subTotal
,
status
,
suffix
,
gap
,
...
rest
})
=>
(
<
div
className
=
{
classNames
(
styles
.
numberInfo
,
{
[
styles
[
`numberInfo
${
theme
}
`
]]:
theme
,
...
...
@@ -26,3 +26,5 @@ export default ({ theme, title, subTitle, total, subTotal, status, suffix, gap,
<
/div
>
<
/div
>
);
export
default
NumberInfo
;
src/components/SiderMenu/index.js
View file @
3df1c08f
...
...
@@ -3,7 +3,7 @@ import React from 'react';
import
DrawerMenu
from
'
rc-drawer-menu
'
;
import
SiderMenu
from
'
./SiderMenu
'
;
export
default
props
=>
const
SiderMenuWrapper
=
props
=>
props
.
isMobile
?
(
<
DrawerMenu
parent
=
{
null
}
...
...
@@ -20,3 +20,5 @@ export default props =>
)
:
(
<
SiderMenu
{...
props
}
/
>
);
export
default
SiderMenuWrapper
;
src/components/StandardFormRow/index.js
View file @
3df1c08f
...
...
@@ -2,7 +2,7 @@ import React from 'react';
import
classNames
from
'
classnames
'
;
import
styles
from
'
./index.less
'
;
export
default
({
title
,
children
,
last
,
block
,
grid
,
...
rest
})
=>
{
const
StandardFormRow
=
({
title
,
children
,
last
,
block
,
grid
,
...
rest
})
=>
{
const
cls
=
classNames
(
styles
.
standardFormRow
,
{
[
styles
.
standardFormRowBlock
]:
block
,
[
styles
.
standardFormRowLast
]:
last
,
...
...
@@ -20,3 +20,5 @@ export default ({ title, children, last, block, grid, ...rest }) => {
<
/div
>
);
};
export
default
StandardFormRow
;
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