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
e1843dd8
Commit
e1843dd8
authored
Apr 16, 2019
by
陈帅
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
BasicProfile finsh
parent
4e752faf
Changes
13
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
324 additions
and
45 deletions
+324
-45
BasicProfile/src/_mock.ts
BasicProfile/src/_mock.ts
+0
-0
BasicProfile/src/components/DescriptionList/Description.tsx
BasicProfile/src/components/DescriptionList/Description.tsx
+26
-0
BasicProfile/src/components/DescriptionList/DescriptionList.tsx
...rofile/src/components/DescriptionList/DescriptionList.tsx
+49
-0
BasicProfile/src/components/DescriptionList/index.less
BasicProfile/src/components/DescriptionList/index.less
+92
-0
BasicProfile/src/components/DescriptionList/index.tsx
BasicProfile/src/components/DescriptionList/index.tsx
+3
-0
BasicProfile/src/components/DescriptionList/responsive.tsx
BasicProfile/src/components/DescriptionList/responsive.tsx
+6
-0
BasicProfile/src/components/PageHeaderWrapper/index.js
BasicProfile/src/components/PageHeaderWrapper/index.js
+0
-26
BasicProfile/src/components/PageHeaderWrapper/index.tsx
BasicProfile/src/components/PageHeaderWrapper/index.tsx
+28
-0
BasicProfile/src/data.d.ts
BasicProfile/src/data.d.ts
+22
-0
BasicProfile/src/index.tsx
BasicProfile/src/index.tsx
+43
-18
BasicProfile/src/model.ts
BasicProfile/src/model.ts
+54
-0
BasicProfile/src/service.ts
BasicProfile/src/service.ts
+0
-0
package.json
package.json
+1
-1
No files found.
BasicProfile/src/_mock.
j
s
→
BasicProfile/src/_mock.
t
s
View file @
e1843dd8
File moved
BasicProfile/src/components/DescriptionList/Description.tsx
0 → 100644
View file @
e1843dd8
import
React
from
'
react
'
;
import
{
Col
}
from
'
antd
'
;
import
styles
from
'
./index.less
'
;
import
responsive
from
'
./responsive
'
;
import
{
ColProps
}
from
'
antd/es/col
'
;
export
interface
DescriptionProps
extends
ColProps
{
column
?:
number
;
key
?:
string
|
number
;
style
?:
React
.
CSSProperties
;
term
?:
React
.
ReactNode
;
}
const
Description
:
React
.
SFC
<
DescriptionProps
>
=
props
=>
{
const
{
term
,
column
=
3
,
children
,
...
restProps
}
=
props
;
return
(
<
Col
{
...
responsive
[
column
]
}
{
...
restProps
}
>
{
term
&&
<
div
className
=
{
styles
.
term
}
>
{
term
}
</
div
>
}
{
children
!==
null
&&
children
!==
undefined
&&
(
<
div
className
=
{
styles
.
detail
}
>
{
children
}
</
div
>
)
}
</
Col
>
);
};
export
default
Description
;
BasicProfile/src/components/DescriptionList/DescriptionList.tsx
0 → 100644
View file @
e1843dd8
import
React
from
'
react
'
;
import
classNames
from
'
classnames
'
;
import
{
Row
}
from
'
antd
'
;
import
styles
from
'
./index.less
'
;
import
Description
,
{
DescriptionProps
}
from
'
./Description
'
;
export
interface
DescriptionListProps
{
className
?:
string
;
col
?:
number
;
description
?:
DescriptionProps
[];
gutter
?:
number
;
layout
?:
'
horizontal
'
|
'
vertical
'
;
size
?:
'
large
'
|
'
small
'
;
style
?:
React
.
CSSProperties
;
title
?:
React
.
ReactNode
;
}
const
DescriptionList
:
React
.
SFC
<
DescriptionListProps
>
&
{
Description
:
typeof
Description
;
}
=
({
className
,
title
,
col
=
3
,
layout
=
'
horizontal
'
,
gutter
=
32
,
children
,
size
,
...
restProps
})
=>
{
const
clsString
=
classNames
(
styles
.
descriptionList
,
styles
[
layout
],
className
,
{
[
styles
.
small
]:
size
===
'
small
'
,
[
styles
.
large
]:
size
===
'
large
'
,
});
const
column
=
col
>
4
?
4
:
col
;
return
(
<
div
className
=
{
clsString
}
{
...
restProps
}
>
{
title
?
<
div
className
=
{
styles
.
title
}
>
{
title
}
</
div
>
:
null
}
<
Row
gutter
=
{
gutter
}
>
{
React
.
Children
.
map
(
children
,
(
child
:
any
)
=>
child
?
React
.
cloneElement
(
child
,
{
column
})
:
child
)
}
</
Row
>
</
div
>
);
};
DescriptionList
.
Description
=
Description
;
export
default
DescriptionList
;
BasicProfile/src/components/DescriptionList/index.less
0 → 100644
View file @
e1843dd8
@import '~antd/lib/style/themes/default.less';
.descriptionList {
// offset the padding-bottom of last row
:global {
.ant-row {
margin-bottom: -16px;
overflow: hidden;
}
}
// fix margin top error of following descriptionList
& + & {
:global {
.ant-row {
margin-top: 16px;
}
}
}
.title {
margin-bottom: 16px;
color: @heading-color;
font-weight: 500;
font-size: 14px;
}
.term {
display: table-cell;
padding-bottom: 16px;
color: @heading-color;
// Line-height is 22px IE dom height will calculate error
line-height: 20px;
white-space: nowrap;
&::after {
position: relative;
top: -0.5px;
margin: 0 8px 0 2px;
content: ':';
}
}
.detail {
display: table-cell;
width: 100%;
padding-bottom: 16px;
color: @text-color;
line-height: 20px;
}
&.small {
// offset the padding-bottom of last row
:global {
.ant-row {
margin-bottom: -8px;
}
}
// fix margin top error of following descriptionList
& + .descriptionList {
:global {
.ant-row {
margin-top: 8px;
}
}
}
.title {
margin-bottom: 12px;
color: @text-color;
}
.term,
.detail {
padding-bottom: 8px;
}
}
&.large {
.title {
font-size: 16px;
}
}
&.vertical {
.term {
display: block;
padding-bottom: 8px;
}
.detail {
display: block;
}
}
}
BasicProfile/src/components/DescriptionList/index.tsx
0 → 100644
View file @
e1843dd8
import
DescriptionList
from
'
./DescriptionList
'
;
export
default
DescriptionList
;
BasicProfile/src/components/DescriptionList/responsive.tsx
0 → 100644
View file @
e1843dd8
export
default
{
1
:
{
xs
:
24
},
2
:
{
xs
:
24
,
sm
:
12
},
3
:
{
xs
:
24
,
sm
:
12
,
md
:
8
},
4
:
{
xs
:
24
,
sm
:
12
,
md
:
6
},
};
BasicProfile/src/components/PageHeaderWrapper/index.js
deleted
100644 → 0
View file @
4e752faf
import
React
from
'
react
'
;
import
{
FormattedMessage
}
from
'
umi-plugin-react/locale
'
;
import
Link
from
'
umi/link
'
;
import
{
PageHeader
}
from
'
ant-design-pro
'
;
import
styles
from
'
./index.less
'
;
const
PageHeaderWrapper
=
({
children
,
contentWidth
,
wrapperClassName
,
top
,
...
restProps
})
=>
(
<
div
style
=
{{
margin
:
'
-24px -24px 0
'
}}
className
=
{
wrapperClassName
}
>
<
PageHeader
wide
=
{
contentWidth
===
'
Fixed
'
}
home
=
{
<
FormattedMessage
id
=
"
BLOCK_NAME.menu.home
"
defaultMessage
=
"
Home
"
/>
}
key
=
"
pageheader
"
{...
restProps
}
linkElement
=
{
Link
}
itemRender
=
{
item
=>
{
if
(
item
.
locale
)
{
return
<
FormattedMessage
id
=
{
item
.
locale
}
defaultMessage
=
{
item
.
title
}
/>
;
}
return
item
.
title
;
}}
/
>
{
children
?
<
div
className
=
{
styles
.
content
}
>
{
children
}
<
/div> : null
}
<
/div
>
);
export
default
PageHeaderWrapper
;
BasicProfile/src/components/PageHeaderWrapper/index.tsx
0 → 100644
View file @
e1843dd8
import
React
from
'
react
'
;
import
{
RouteContext
}
from
'
@ant-design/pro-layout
'
;
import
{
PageHeader
}
from
'
antd
'
;
import
styles
from
'
./index.less
'
;
interface
IPageHeaderWrapperProps
{
content
?:
React
.
ReactNode
;
title
:
React
.
ReactNode
;
}
const
PageHeaderWrapper
:
React
.
SFC
<
IPageHeaderWrapperProps
>
=
({
children
,
content
,
...
restProps
})
=>
(
<
RouteContext
.
Consumer
>
{
value
=>
(
<
div
style
=
{
{
margin
:
'
-24px -24px 0
'
}
}
>
<
PageHeader
{
...
restProps
}
{
...
value
}
>
{
content
}
</
PageHeader
>
{
children
?
<
div
className
=
{
styles
.
content
}
>
{
children
}
</
div
>
:
null
}
</
div
>
)
}
</
RouteContext
.
Consumer
>
);
export
default
PageHeaderWrapper
;
BasicProfile/src/data.d.ts
0 → 100644
View file @
e1843dd8
export
interface
BasicGood
{
id
:
string
;
name
:
string
;
barcode
:
string
;
price
:
string
;
num
:
string
|
number
;
amount
:
string
|
number
;
}
export
interface
BasicProgress
{
key
:
string
;
time
:
string
;
rate
:
string
;
status
:
string
;
operator
:
string
;
cost
:
string
;
}
export
interface
BasicProfileDataType
{
basicGoods
:
BasicGood
[];
basicProgress
:
BasicProgress
[];
}
BasicProfile/src/index.
js
→
BasicProfile/src/index.
tsx
View file @
e1843dd8
import
React
,
{
Component
}
from
'
react
'
;
import
React
,
{
Component
}
from
'
react
'
;
import
{
connect
}
from
'
dva
'
;
import
{
connect
}
from
'
dva
'
;
import
{
Card
,
Badge
,
Table
,
Divider
}
from
'
antd
'
;
import
{
Card
,
Badge
,
Table
,
Divider
}
from
'
antd
'
;
import
{
DescriptionList
}
from
'
ant-design-pro
'
;
import
DescriptionList
from
'
./components/DescriptionList
'
;
import
PageHeaderWrapper
from
'
./components/PageHeaderWrapper
'
;
import
PageHeaderWrapper
from
'
./components/PageHeaderWrapper
'
;
import
styles
from
'
./style.less
'
;
import
styles
from
'
./style.less
'
;
import
{
BasicProfileDataType
,
BasicGood
}
from
'
./data
'
;
import
{
Dispatch
}
from
'
redux
'
;
const
{
Description
}
=
DescriptionList
;
const
{
Description
}
=
DescriptionList
;
const
progressColumns
=
[
const
progressColumns
=
[
...
@@ -22,7 +23,7 @@ const progressColumns = [
...
@@ -22,7 +23,7 @@ const progressColumns = [
title
:
'
状态
'
,
title
:
'
状态
'
,
dataIndex
:
'
status
'
,
dataIndex
:
'
status
'
,
key
:
'
status
'
,
key
:
'
status
'
,
render
:
text
=>
render
:
(
text
:
string
)
=>
text
===
'
success
'
?
(
text
===
'
success
'
?
(
<
Badge
status
=
"success"
text
=
"成功"
/>
<
Badge
status
=
"success"
text
=
"成功"
/>
)
:
(
)
:
(
...
@@ -41,11 +42,33 @@ const progressColumns = [
...
@@ -41,11 +42,33 @@ const progressColumns = [
},
},
];
];
@
connect
(({
BLOCK_NAME_CAMEL_CASE
,
loading
})
=>
({
interface
PAGE_NAME_UPPER_CAMEL_CASEProps
{
BLOCK_NAME_CAMEL_CASE
,
loading
:
boolean
;
loading
:
loading
.
effects
[
'
BLOCK_NAME_CAMEL_CASE/fetchBasic
'
],
dispatch
:
Dispatch
;
}))
BLOCK_NAME_CAMEL_CASE
:
BasicProfileDataType
;
class
PAGE_NAME_UPPER_CAMEL_CASE
extends
Component
{
}
interface
PAGE_NAME_UPPER_CAMEL_CASEState
{
visible
:
boolean
;
}
@
connect
(
({
BLOCK_NAME_CAMEL_CASE
,
loading
,
}:
{
BLOCK_NAME_CAMEL_CASE
:
BasicProfileDataType
;
loading
:
{
effects
:
{
[
key
:
string
]:
boolean
};
};
})
=>
({
BLOCK_NAME_CAMEL_CASE
,
loading
:
loading
.
effects
[
'
BLOCK_NAME_CAMEL_CASE/fetchBasic
'
],
})
)
class
PAGE_NAME_UPPER_CAMEL_CASE
extends
Component
<
PAGE_NAME_UPPER_CAMEL_CASEProps
,
PAGE_NAME_UPPER_CAMEL_CASEState
>
{
componentDidMount
()
{
componentDidMount
()
{
const
{
dispatch
}
=
this
.
props
;
const
{
dispatch
}
=
this
.
props
;
dispatch
({
dispatch
({
...
@@ -56,7 +79,7 @@ class PAGE_NAME_UPPER_CAMEL_CASE extends Component {
...
@@ -56,7 +79,7 @@ class PAGE_NAME_UPPER_CAMEL_CASE extends Component {
render
()
{
render
()
{
const
{
BLOCK_NAME_CAMEL_CASE
,
loading
}
=
this
.
props
;
const
{
BLOCK_NAME_CAMEL_CASE
,
loading
}
=
this
.
props
;
const
{
basicGoods
,
basicProgress
}
=
BLOCK_NAME_CAMEL_CASE
;
const
{
basicGoods
,
basicProgress
}
=
BLOCK_NAME_CAMEL_CASE
;
let
goodsData
=
[];
let
goodsData
:
typeof
basicGoods
=
[];
if
(
basicGoods
.
length
)
{
if
(
basicGoods
.
length
)
{
let
num
=
0
;
let
num
=
0
;
let
amount
=
0
;
let
amount
=
0
;
...
@@ -68,12 +91,14 @@ class PAGE_NAME_UPPER_CAMEL_CASE extends Component {
...
@@ -68,12 +91,14 @@ class PAGE_NAME_UPPER_CAMEL_CASE extends Component {
id
:
'
总计
'
,
id
:
'
总计
'
,
num
,
num
,
amount
,
amount
,
});
}
as
BasicGood
);
}
}
const
renderContent
=
(
value
,
row
,
index
)
=>
{
const
renderContent
=
(
value
:
any
,
row
:
any
,
index
:
any
)
=>
{
const
obj
=
{
const
obj
=
{
children
:
value
,
children
:
value
,
props
:
{},
props
:
{}
as
{
colSpan
?:
number
;
},
};
};
if
(
index
===
basicGoods
.
length
)
{
if
(
index
===
basicGoods
.
length
)
{
obj
.
props
.
colSpan
=
0
;
obj
.
props
.
colSpan
=
0
;
...
@@ -85,7 +110,7 @@ class PAGE_NAME_UPPER_CAMEL_CASE extends Component {
...
@@ -85,7 +110,7 @@ class PAGE_NAME_UPPER_CAMEL_CASE extends Component {
title
:
'
商品编号
'
,
title
:
'
商品编号
'
,
dataIndex
:
'
id
'
,
dataIndex
:
'
id
'
,
key
:
'
id
'
,
key
:
'
id
'
,
render
:
(
text
,
row
,
index
)
=>
{
render
:
(
text
:
React
.
ReactNode
,
row
:
any
,
index
:
number
)
=>
{
if
(
index
<
basicGoods
.
length
)
{
if
(
index
<
basicGoods
.
length
)
{
return
<
a
href
=
""
>
{
text
}
</
a
>;
return
<
a
href
=
""
>
{
text
}
</
a
>;
}
}
...
@@ -113,15 +138,15 @@ class PAGE_NAME_UPPER_CAMEL_CASE extends Component {
...
@@ -113,15 +138,15 @@ class PAGE_NAME_UPPER_CAMEL_CASE extends Component {
title
:
'
单价
'
,
title
:
'
单价
'
,
dataIndex
:
'
price
'
,
dataIndex
:
'
price
'
,
key
:
'
price
'
,
key
:
'
price
'
,
align
:
'
right
'
,
align
:
'
right
'
as
'
left
'
|
'
right
'
|
'
center
'
,
render
:
renderContent
,
render
:
renderContent
,
},
},
{
{
title
:
'
数量(件)
'
,
title
:
'
数量(件)
'
,
dataIndex
:
'
num
'
,
dataIndex
:
'
num
'
,
key
:
'
num
'
,
key
:
'
num
'
,
align
:
'
right
'
,
align
:
'
right
'
as
'
left
'
|
'
right
'
|
'
center
'
,
render
:
(
text
,
row
,
index
)
=>
{
render
:
(
text
:
React
.
ReactNode
,
row
:
any
,
index
:
number
)
=>
{
if
(
index
<
basicGoods
.
length
)
{
if
(
index
<
basicGoods
.
length
)
{
return
text
;
return
text
;
}
}
...
@@ -132,8 +157,8 @@ class PAGE_NAME_UPPER_CAMEL_CASE extends Component {
...
@@ -132,8 +157,8 @@ class PAGE_NAME_UPPER_CAMEL_CASE extends Component {
title
:
'
金额
'
,
title
:
'
金额
'
,
dataIndex
:
'
amount
'
,
dataIndex
:
'
amount
'
,
key
:
'
amount
'
,
key
:
'
amount
'
,
align
:
'
right
'
,
align
:
'
right
'
as
'
left
'
|
'
right
'
|
'
center
'
,
render
:
(
text
,
row
,
index
)
=>
{
render
:
(
text
:
React
.
ReactNode
,
row
:
any
,
index
:
number
)
=>
{
if
(
index
<
basicGoods
.
length
)
{
if
(
index
<
basicGoods
.
length
)
{
return
text
;
return
text
;
}
}
...
...
BasicProfile/src/model.
j
s
→
BasicProfile/src/model.
t
s
View file @
e1843dd8
import
{
queryBasicProfile
}
from
'
./service
'
;
import
{
queryBasicProfile
}
from
'
./service
'
;
import
{
BasicGood
}
from
'
./data
'
;
import
{
Reducer
}
from
'
redux
'
;
import
{
EffectsCommandMap
}
from
'
dva
'
;
import
{
AnyAction
}
from
'
redux
'
;
export
default
{
export
interface
IStateType
{
basicGoods
:
BasicGood
[];
}
export
type
Effect
=
(
action
:
AnyAction
,
effects
:
EffectsCommandMap
&
{
select
:
<
T
>
(
func
:
(
state
:
IStateType
)
=>
T
)
=>
T
}
)
=>
void
;
export
interface
ModelType
{
namespace
:
string
;
state
:
IStateType
;
effects
:
{
fetchBasic
:
Effect
;
};
reducers
:
{
show
:
Reducer
<
IStateType
>
;
};
}
const
Model
:
ModelType
=
{
namespace
:
'
BLOCK_NAME_CAMEL_CASE
'
,
namespace
:
'
BLOCK_NAME_CAMEL_CASE
'
,
state
:
{
state
:
{
...
@@ -26,3 +50,5 @@ export default {
...
@@ -26,3 +50,5 @@ export default {
},
},
},
},
};
};
export
default
Model
;
BasicProfile/src/service.
j
s
→
BasicProfile/src/service.
t
s
View file @
e1843dd8
File moved
package.json
View file @
e1843dd8
{
{
"private"
:
true
,
"private"
:
true
,
"scripts"
:
{
"scripts"
:
{
"dev"
:
"cross-env PAGES_PATH='Basic
List
/src' umi dev"
,
"dev"
:
"cross-env PAGES_PATH='Basic
Profile
/src' umi dev"
,
"lint:style"
:
"stylelint
\"
src/**/*.less
\"
--syntax less"
,
"lint:style"
:
"stylelint
\"
src/**/*.less
\"
--syntax less"
,
"lint"
:
"eslint --ext .js src mock tests && npm run lint:style"
,
"lint"
:
"eslint --ext .js src mock tests && npm run lint:style"
,
"lint:fix"
:
"eslint --fix --ext .js src mock tests && npm run lint:style"
,
"lint:fix"
:
"eslint --fix --ext .js src mock tests && npm run lint:style"
,
...
...
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