Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mr-julyedu
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
baiguangyao
mr-julyedu
Commits
18d820c9
Commit
18d820c9
authored
Apr 18, 2019
by
baiguangyao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
我的页面
parent
9fc1818d
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
216 additions
and
2 deletions
+216
-2
.history/src/components/my/index_20190418142312.js
+18
-0
.history/src/components/my/index_20190418142513.js
+22
-0
.history/src/components/my/index_20190418142602.js
+26
-0
.history/src/components/my/index_20190418142708.js
+26
-0
.history/src/components/my/index_20190418143000.js
+28
-0
.history/src/components/my/index_20190418143009.js
+27
-0
.history/src/components/my/index_20190418143047.js
+27
-0
.history/src/components/my/index_20190418143238.js
+28
-0
src/components/my/index.js
+14
-2
No files found.
.history/src/components/my/index_20190418142312.js
0 → 100644
View file @
18d820c9
import
React
,
{
Component
}
from
'react'
;
import
{
Flex
,
WhiteSpace
}
from
'antd-mobile'
;
class
My
extends
Component
{
render
()
{
return
(
<
div
>
我的
<
/div
>
)
}
}
export
default
My
;
\ No newline at end of file
.history/src/components/my/index_20190418142513.js
0 → 100644
View file @
18d820c9
import
React
,
{
Component
}
from
'react'
;
import
{
Flex
,
WhiteSpace
}
from
'antd-mobile'
;
class
My
extends
Component
{
render
()
{
return
(
<
div
className
=
"flex-container"
>
<
Flex
>
<
Flex
.
Item
><
PlaceHolder
/><
/Flex.Item
>
<
Flex
.
Item
><
PlaceHolder
/><
/Flex.Item
>
<
/Flex
>
<
WhiteSpace
size
=
"lg"
/>
<
/div
>
)
}
}
export
default
My
;
\ No newline at end of file
.history/src/components/my/index_20190418142602.js
0 → 100644
View file @
18d820c9
import
React
,
{
Component
}
from
'react'
;
import
{
Flex
,
WhiteSpace
}
from
'antd-mobile'
;
const
PlaceHolder
=
({
className
=
''
,
...
restProps
})
=>
(
<
div
className
=
{
`
${
className
}
placeholder`
}
{...
restProps
}
>
Block
<
/div
>
);
class
My
extends
Component
{
render
()
{
return
(
<
div
className
=
"flex-container"
>
<
Flex
>
<
Flex
.
Item
><
PlaceHolder
/><
/Flex.Item
>
<
Flex
.
Item
><
PlaceHolder
/><
/Flex.Item
>
<
/Flex
>
<
WhiteSpace
size
=
"lg"
/>
<
/div
>
)
}
}
export
default
My
;
\ No newline at end of file
.history/src/components/my/index_20190418142708.js
0 → 100644
View file @
18d820c9
import
React
,
{
Component
}
from
'react'
;
import
{
Flex
,
WhiteSpace
}
from
'antd-mobile'
;
const
PlaceHolder
=
({
className
=
''
,
...
restProps
})
=>
(
<
div
className
=
{
`
${
className
}
placeholder`
}
{...
restProps
}
>
Block
<
/div
>
);
class
My
extends
Component
{
render
()
{
return
(
<
div
className
=
"flex-container"
>
<
Flex
>
<
Flex
.
Item
><
/Flex.Item
>
<
Flex
.
Item
><
PlaceHolder
/><
/Flex.Item
>
<
/Flex
>
<
WhiteSpace
size
=
"lg"
/>
<
/div
>
)
}
}
export
default
My
;
\ No newline at end of file
.history/src/components/my/index_20190418143000.js
0 → 100644
View file @
18d820c9
import
React
,
{
Component
}
from
'react'
;
import
{
Flex
,
WhiteSpace
,
NavBar
}
from
'antd-mobile'
;
class
My
extends
Component
{
render
()
{
return
(
<
div
className
=
"flex-container"
>
<
Flex
>
<
Flex
.
Item
>
<
NavBar
mode
=
"light"
icon
=
{
<
Icon
type
=
"left"
/>
}
onLeftClick
=
{()
=>
console
.
log
(
'onLeftClick'
)}
rightContent
=
{[
]}
>
NavBar
<
/NavBar
>
<
/Flex.Item
>
<
/Flex
>
<
WhiteSpace
size
=
"lg"
/>
<
/div
>
)
}
}
export
default
My
;
\ No newline at end of file
.history/src/components/my/index_20190418143009.js
0 → 100644
View file @
18d820c9
import
React
,
{
Component
}
from
'react'
;
import
{
Flex
,
WhiteSpace
,
NavBar
}
from
'antd-mobile'
;
class
My
extends
Component
{
render
()
{
return
(
<
div
className
=
"flex-container"
>
<
Flex
>
<
Flex
.
Item
>
<
NavBar
mode
=
"light"
onLeftClick
=
{()
=>
console
.
log
(
'onLeftClick'
)}
rightContent
=
{[
]}
>
NavBar
<
/NavBar
>
<
/Flex.Item
>
<
/Flex
>
<
WhiteSpace
size
=
"lg"
/>
<
/div
>
)
}
}
export
default
My
;
\ No newline at end of file
.history/src/components/my/index_20190418143047.js
0 → 100644
View file @
18d820c9
import
React
,
{
Component
}
from
'react'
;
import
{
Flex
,
WhiteSpace
,
NavBar
}
from
'antd-mobile'
;
class
My
extends
Component
{
render
()
{
return
(
<
div
className
=
"flex-container"
>
<
Flex
>
<
Flex
.
Item
>
<
NavBar
mode
=
"light"
onLeftClick
=
{()
=>
console
.
log
(
'onLeftClick'
)}
rightContent
=
{[
]}
>
首页
<
/NavBar
>
<
/Flex.Item
>
<
/Flex
>
<
WhiteSpace
size
=
"lg"
/>
<
/div
>
)
}
}
export
default
My
;
\ No newline at end of file
.history/src/components/my/index_20190418143238.js
0 → 100644
View file @
18d820c9
import
React
,
{
Component
}
from
'react'
;
import
{
Flex
,
WhiteSpace
,
NavBar
}
from
'antd-mobile'
;
class
My
extends
Component
{
render
()
{
return
(
<
div
className
=
"flex-container"
>
<
Flex
>
<
Flex
.
Item
>
<
NavBar
style
=
{{
'backGround'
:
'#f7f9fc'
}}
mode
=
"light"
onLeftClick
=
{()
=>
console
.
log
(
'onLeftClick'
)}
rightContent
=
{[
]}
>
首页
<
/NavBar
>
<
/Flex.Item
>
<
/Flex
>
<
WhiteSpace
size
=
"lg"
/>
<
/div
>
)
}
}
export
default
My
;
\ No newline at end of file
src/components/my/index.js
View file @
18d820c9
import
React
,
{
Component
}
from
'react'
;
import
{
Flex
,
WhiteSpace
,
NavBar
}
from
'antd-mobile'
;
class
My
extends
Component
{
render
()
{
return
(
<
div
>
我的
<
div
className
=
"flex-container"
>
<
Flex
>
<
Flex
.
Item
>
<
NavBar
style
=
{{
'backGround'
:
'#f7f9fc'
}}
mode
=
"light"
onLeftClick
=
{()
=>
console
.
log
(
'onLeftClick'
)}
rightContent
=
{[
]}
>
首页
<
/NavBar
>
<
/Flex.Item
>
<
/Flex
>
<
WhiteSpace
size
=
"lg"
/>
<
/div
>
)
}
...
...
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