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
6b1d735a
Commit
6b1d735a
authored
Oct 30, 2019
by
xuzhenghua
Browse files
Options
Browse Files
Download
Plain Diff
pull
parents
b6c734fe
1060de5f
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
347 additions
and
106 deletions
+347
-106
src/components/blessingPreheat/addressPopup/index.js
+152
-0
src/components/blessingPreheat/addressPopup/index.scss
+54
-0
src/components/blessingPreheat/collectBlessing/index.js
+2
-1
src/components/blessingPreheat/collectBlessing/index.scss
+5
-1
src/components/blessingPreheat/index.js
+4
-1
src/components/blessingPreheat/index.scss
+102
-101
src/components/blessingRank/index.js
+28
-2
No files found.
src/components/blessingPreheat/addressPopup/index.js
0 → 100644
View file @
6b1d735a
import
React
,
{
Component
}
from
'react'
;
import
{
isEmpty
}
from
'lodash'
;
import
{
http
}
from
'@/utils'
;
import
{
Formik
,
Form
,
Field
}
from
'formik'
;
import
{
Toast
}
from
"antd-mobile"
;
import
'./index.scss'
;
class
AddressPopup
extends
Component
{
constructor
(
props
)
{
super
(
props
)
this
.
state
=
{
isLoading
:
false
,
addressInfo
:
{
name
:
''
,
phone
:
''
,
address
:
''
,
},
}
}
componentDidMount
()
{
this
.
fetchUserAddress
();
}
// 获取收货信息
fetchUserAddress
=
()
=>
{
const
{
addressInfo
}
=
this
.
state
;
http
.
get
(
`
${
API
.
home
}
/sys/user_address_info`
).
then
(
res
=>
{
const
{
code
,
data
,
msg
}
=
res
.
data
;
if
(
code
===
200
)
{
this
.
setState
({
addressInfo
:
Object
.
assign
({},
addressInfo
,
{
name
:
data
.
name
,
phone
:
data
.
phone
,
address
:
data
.
address
,
}),
isLoading
:
true
,
});
}
});
}
handleToSubmit
=
(
params
=
{})
=>
{
const
{
handleToHide
}
=
this
.
props
;
http
.
post
(
`
${
API
.
home
}
/sys/collect_info`
,
params
).
then
(
res
=>
{
const
{
code
,
msg
}
=
res
.
data
;
if
(
code
===
200
)
{
handleToHide
();
}
else
{
Toast
.
info
(
msg
,
2
,
null
,
false
);
}
});
}
render
()
{
const
{
isLoading
,
addressInfo
}
=
this
.
state
;
return
(
<>
{
isLoading
&&
<
Formik
initialValues
=
{{
...
addressInfo
}}
validate
=
{({
name
,
phone
,
address
})
=>
{
const
errors
=
{};
if
(
!
name
)
{
errors
.
name
=
'请输入收件人'
;
}
if
(
!
/^1
[
3-9
]\d{9}
$/
.
test
(
phone
))
{
errors
.
phone
=
'请填写正确格式的手机号'
;
}
if
(
!
address
)
{
errors
.
address
=
'请输入收货地址'
;
}
return
errors
;
}}
onSubmit
=
{(
values
)
=>
{
this
.
handleToSubmit
(
values
);
}}
render
=
{({
errors
})
=>
(
<
Form
className
=
"address-form"
>
<
p
className
=
"address-form__desc"
>
请及时填写收货信息,获得实物奖品后将第一时间为您邮寄
<
/p
>
<
Field
name
=
"name"
render
=
{({
field
})
=>
(
<
div
className
=
"address-form__item"
>
<
input
{...
field
}
className
=
"address-form__ipt"
type
=
"text"
placeholder
=
"收件人"
/>
{
errors
.
name
&&
<
p
className
=
"address-form__tip"
>
{
errors
.
name
}
<
/p
>
}
<
/div
>
)}
/
>
<
Field
name
=
"phone"
render
=
{({
field
})
=>
(
<
div
className
=
"address-form__item"
>
<
input
{...
field
}
className
=
"address-form__ipt"
type
=
"text"
placeholder
=
"联系方式"
/>
{
errors
.
phone
&&
<
p
className
=
"address-form__tip"
>
{
errors
.
phone
}
<
/p
>
}
<
/div
>
)}
/
>
<
Field
name
=
"address"
render
=
{({
field
})
=>
(
<
div
className
=
"address-form__item"
>
<
input
{...
field
}
className
=
"address-form__ipt"
type
=
"text"
placeholder
=
"收货地址"
/>
{
errors
.
address
&&
<
p
className
=
"address-form__tip"
>
{
errors
.
address
}
<
/p
>
}
<
/div
>
)}
/
>
<
button
className
=
"address-form__submit"
data
-
status
=
{
isEmpty
(
errors
)?
'do'
:
''
}
type
=
"submit"
>
提交
<
/button
>
<
/Form
>
)}
/
>
}
<
/
>
);
}
}
export
default
AddressPopup
;
\ No newline at end of file
src/components/blessingPreheat/addressPopup/index.scss
0 → 100644
View file @
6b1d735a
// 地址弹窗
.address-form__desc
{
width
:
238px
;
margin
:
16px
auto
15px
;
font-size
:
12px
;
color
:
#999
;
}
.address-form__item
{
position
:
relative
;
width
:
250px
;
margin
:
0
auto
16px
;
}
.address-form__ipt
{
display
:
block
;
width
:
100%
;
height
:
40px
;
border
:
1px
solid
rgba
(
221
,
221
,
221
,
1
);
font-size
:
14px
;
font-weight
:
400
;
color
:
rgba
(
153
,
153
,
153
,
1
);
text-indent
:
10px
;
}
.address-form__tip
{
position
:
absolute
;
bottom
:
-14px
;
width
:
100%
;
font-size
:
12px
;
color
:
#ff0000
;
line-height
:
14px
;
}
.address-form__submit
{
display
:
block
;
width
:
120px
;
height
:
34px
;
margin
:
8px
auto
0
;
border-radius
:
17px
;
border-style
:
none
;
background-color
:
rgba
(
82
,
92
,
101
,
0
.3
);
font-size
:
15px
;
font-weight
:
500
;
color
:
rgba
(
255
,
255
,
255
,
1
);
line-height
:
34px
;
cursor
:
pointer
;
outline
:
none
;
&
[
data-status
=
"do"
]
{
background-color
:
#0099FF
;
}
}
\ No newline at end of file
src/components/blessingPreheat/collectBlessing/index.js
View file @
6b1d735a
...
@@ -49,6 +49,7 @@ class CollectBlessing extends Component {
...
@@ -49,6 +49,7 @@ class CollectBlessing extends Component {
}
}
render
()
{
render
()
{
console
.
log
(
this
.
props
);
const
{
const
{
isSign
,
isSign
,
userInfo
:
{
isLogin
=
false
,
blessingVal
=
0
},
userInfo
:
{
isLogin
=
false
,
blessingVal
=
0
},
...
@@ -106,7 +107,7 @@ class CollectBlessing extends Component {
...
@@ -106,7 +107,7 @@ class CollectBlessing extends Component {
<
p
className
=
"collect-blessing__title"
>
{
item
}
<
/p
>
<
p
className
=
"collect-blessing__title"
>
{
item
}
<
/p
>
{
{
index
===
0
&&
(
isLogin
&&
isSign
)
&&
index
===
0
&&
(
isLogin
&&
isSign
)
&&
<
a
className
=
"collect-blessing__content"
onClick
=
{
handleToShowNotice
}
>
<
a
className
=
"collect-blessing__content"
data
-
status
=
"done"
>
+
5
点
<
br
/>
福气值
+
5
点
<
br
/>
福气值
<
/a
>
<
/a
>
}
}
...
...
src/components/blessingPreheat/collectBlessing/index.scss
View file @
6b1d735a
...
@@ -55,6 +55,10 @@
...
@@ -55,6 +55,10 @@
&
[
data-layout
=
"column"
]
{
&
[
data-layout
=
"column"
]
{
flex-direction
:
column
;
flex-direction
:
column
;
}
}
&
[
data-status
=
"done"
]
{
background
:
rgba
(
82
,
92
,
101
,.
3
);
}
}
}
.collect-blessing__label
{
.collect-blessing__label
{
...
@@ -179,7 +183,7 @@
...
@@ -179,7 +183,7 @@
p
{
p
{
margin-bottom
:
10px
;
margin-bottom
:
10px
;
line-height
:
1
;
line-height
:
1
;
&
:last-child
{
&
:last-child
{
margin-bottom
:
0
;
margin-bottom
:
0
;
}
}
...
...
src/components/blessingPreheat/index.js
View file @
6b1d735a
...
@@ -50,6 +50,7 @@ class BlessingPreheat extends Component {
...
@@ -50,6 +50,7 @@ class BlessingPreheat extends Component {
const
{
code
,
data
}
=
res
.
data
;
const
{
code
,
data
}
=
res
.
data
;
if
(
code
===
200
)
{
if
(
code
===
200
)
{
this
.
setState
({
this
.
setState
({
isSign
:
!!
data
.
today_signed
,
isFormal
:
data
.
is_activity
,
isFormal
:
data
.
is_activity
,
userInfo
:
Object
.
assign
({},
userInfo
,
{
userInfo
:
Object
.
assign
({},
userInfo
,
{
isLogin
:
!!
data
.
is_login
,
isLogin
:
!!
data
.
is_login
,
...
@@ -214,6 +215,8 @@ class BlessingPreheat extends Component {
...
@@ -214,6 +215,8 @@ class BlessingPreheat extends Component {
<
/Popup
>
<
/Popup
>
<
Popup
visible
=
{
this
.
state
.
joinLotteryVisible
}
<
Popup
visible
=
{
this
.
state
.
joinLotteryVisible
}
title
=
{
'你已成功参与本时段抽奖'
}
title
=
{
'你已成功参与本时段抽奖'
}
className
=
{
'join-lottery'
}
className
=
{
'join-lottery'
}
...
@@ -250,4 +253,4 @@ class BlessingPreheat extends Component {
...
@@ -250,4 +253,4 @@ class BlessingPreheat extends Component {
}
}
}
}
export
default
BlessingPreheat
export
default
BlessingPreheat
;
src/components/blessingPreheat/index.scss
View file @
6b1d735a
#blessing-preheat
{
#blessing-preheat
{
background
:
#5327FA
;
background
:
#5327FA
;
.invite-popup
{
}
.content
{
display
:
flex
;
.timeline-share
{
flex-flow
:
column
;
height
:
215px
;
align-items
:
center
;
padding-bottom
:
30px
;
margin-top
:
29px
;
.title
{
margin-bottom
:
20px
;
.qr-code
{
}
width
:
120px
;
.content
{
height
:
120px
;
text-align
:
center
;
margin-bottom
:
20px
;
.qr-code
{
}
width
:
120px
;
height
:
120px
;
button
{
width
:
133px
;
height
:
30px
;
background
:
rgba
(
83
,
39
,
250
,
1
);
border-radius
:
15px
;
font-size
:
14px
;
color
:
#fff
;
-webkit-appearance
:
none
;
outline
:
none
;
border
:
none
;
}
}
}
}
}
}
.test__record
{
width
:
106px
;
height
:
26px
;
border
:
1px
solid
rgba
(
255
,
246
,
4
,
1
);
border-radius
:
13px
;
font-size
:
14px
;
font-weight
:
400
;
color
:rgba
(
255
,
246
,
4
,
1
)
;
margin
:
10px
auto
14px
;
display
:
flex
;
justify-content
:
center
;
align-items
:
center
;
}
.sort__rules
{
font-size
:
12px
;
font-weight
:
400
;
color
:rgba
(
255
,
255
,
255
,
1
)
;
text-align
:
center
;
text-align-last
:
center
;
}
.join-lottery
{
background
:
#5327FA
;
text-align
:
center
;
.title
{
color
:
#fff
;
margin-bottom
:
15px
;
}
.join-lottery
{
.text
{
background
:
#5327FA
;
width
:
275px
;
height
:
248px
;
padding
:
36px
30px
0
;
margin-bottom
:
10px
;
text-align
:
center
;
text-align
:
center
;
background
:
url("https://julyedu-cdn.oss-cn-beijing.aliyuncs.com/active19_1111/m/join-lottery-bg.png")
;
background-size
:
contain
;
font-size
:
14px
;
.title
{
.code
{
color
:
#fff
;
color
:
#FF0000
;
margin-bottom
:
15px
;
margin-bottom
:
8px
;
}
.time
,
.hint
{
font-size
:
12px
;
color
:
#525C65
;
}
.time
{
margin-bottom
:
20px
;
}
}
.text
{
.hint
{
width
:
275px
;
color
:
rgba
(
82
,
92
,
101
,
.8
);
height
:
248px
;
padding
:
36px
30px
0
;
margin-bottom
:
10px
;
margin-bottom
:
10px
;
text-align
:
center
;
text-align
:
left
;
background
:
url("https://julyedu-cdn.oss-cn-beijing.aliyuncs.com/active19_1111/m/join-lottery-bg.png")
;
}
background-size
:
contain
;
font-size
:
14px
;
.code
{
.qr-code
{
color
:
#FF0000
;
width
:
90px
;
margin-bottom
:
8px
;
height
:
90px
;
}
}
}
.time
,
.hint
{
font-size
:
12px
;
button
{
color
:
#525C65
;
width
:
133px
;
}
height
:
30px
;
background
:
#fff
;
.time
{
border-radius
:
15px
;
margin-bottom
:
20px
;
font-size
:
14px
;
}
color
:
#5327FA
;
-webkit-appearance
:
none
;
.hint
{
outline
:
none
;
color
:
rgba
(
82
,
92
,
101
,
.8
);
border
:
none
;
margin-bottom
:
10px
;
}
text-align
:
left
;
}
}
.invite-popup
{
.qr-code
{
.content
{
width
:
90px
;
display
:
flex
;
height
:
90px
;
flex-flow
:
column
;
}
align-items
:
center
;
margin-top
:
29px
;
.qr-code
{
width
:
120px
;
height
:
120px
;
margin-bottom
:
20px
;
}
}
button
{
button
{
width
:
133px
;
width
:
133px
;
height
:
30px
;
height
:
30px
;
background
:
#fff
;
background
:
rgba
(
83
,
39
,
250
,
1
)
;
border-radius
:
15px
;
border-radius
:
15px
;
font-size
:
14px
;
font-size
:
14px
;
color
:
#
5327FA
;
color
:
#
fff
;
-webkit-appearance
:
none
;
-webkit-appearance
:
none
;
outline
:
none
;
outline
:
none
;
border
:
none
;
border
:
none
;
}
}
}
}
.timeline-share
{
height
:
215px
;
padding-bottom
:
30px
;
.title
{
margin-bottom
:
20px
;
}
.content
{
text-align
:
center
;
.qr-code
{
width
:
120px
;
height
:
120px
;
}
}
}
.test__record
{
width
:
106px
;
height
:
26px
;
border
:
1px
solid
rgba
(
255
,
246
,
4
,
1
);
border-radius
:
13px
;
font-size
:
14px
;
font-weight
:
400
;
color
:rgba
(
255
,
246
,
4
,
1
)
;
margin
:
10px
auto
14px
;
display
:
flex
;
justify-content
:
center
;
align-items
:
center
;
}
.sort__rules
{
font-size
:
12px
;
font-weight
:
400
;
color
:rgba
(
255
,
255
,
255
,
1
)
;
text-align
:
center
;
text-align-last
:
center
;
}
}
}
// 幸运大抽奖--预热
// 幸运大抽奖--预热
...
@@ -142,4 +143,5 @@
...
@@ -142,4 +143,5 @@
font-size
:
13px
;
font-size
:
13px
;
color
:
#FFF604
;
color
:
#FFF604
;
background-color
:
transparent
;
background-color
:
transparent
;
}
}
\ No newline at end of file
src/components/blessingRank/index.js
View file @
6b1d735a
import
React
,
{
Component
}
from
'react'
;
import
React
,
{
Component
}
from
'react'
;
import
{
connect
}
from
'react-redux'
;
import
{
http
}
from
"@/utils"
;
import
{
http
}
from
"@/utils"
;
import
{
Popup
}
from
'@/common'
;
import
AddressPopup
from
'./../blessingPreheat/addressPopup/index'
;
import
'./index.scss'
;
import
'./index.scss'
;
@
connect
(({
user
})
=>
(
{
uid
:
user
.
data
.
uid
||
''
}
))
class
BlessingRank
extends
Component
{
class
BlessingRank
extends
Component
{
constructor
(
props
)
{
constructor
(
props
)
{
super
(
props
);
super
(
props
);
this
.
state
=
{
this
.
state
=
{
isAddress
:
false
,
rankList
:
[],
rankList
:
[],
rules
:
[
rules
:
[
'1、排行榜名次以2019年11月13日24点七月在线公布的排行榜为准,榜单确认后,得奖小伙伴请及时填写邮寄信息,7个自然日内不填写,视为主动放弃奖品;'
,
'1、排行榜名次以2019年11月13日24点七月在线公布的排行榜为准,榜单确认后,得奖小伙伴请及时填写邮寄信息,7个自然日内不填写,视为主动放弃奖品;'
,
...
@@ -31,17 +40,28 @@ class BlessingRank extends Component {
...
@@ -31,17 +40,28 @@ class BlessingRank extends Component {
});
});
}
}
handleToSwitch
=
(
bool
)
=>
{
const
{
history
,
uid
}
=
this
.
props
;
if
(
bool
&&
!
uid
)
{
history
.
push
(
'/passport'
);
}
else
{
this
.
setState
({
isAddress
:
bool
});
}
}
formatString
=
(
str
,
len
)
=>
{
formatString
=
(
str
,
len
)
=>
{
return
str
.
length
>
len
?
`
${
str
.
substr
(
0
,
len
)}
...`
:
str
;
return
str
.
length
>
len
?
`
${
str
.
substr
(
0
,
len
)}
...`
:
str
;
}
}
render
()
{
render
()
{
const
{
rankList
,
rules
}
=
this
.
state
;
const
{
isAddress
,
rankList
,
rules
}
=
this
.
state
;
return
(
return
(
<>
<>
<
div
className
=
"rank__banner"
><
/div
>
<
div
className
=
"rank__banner"
><
/div
>
<
div
className
=
"rank__body"
>
<
div
className
=
"rank__body"
>
<
button
className
=
"rank__address"
>
填写收货地址
><
/button
>
<
button
className
=
"rank__address"
onClick
=
{()
=>
this
.
handleToSwitch
(
true
)}
>
填写收货地址
><
/button
>
<
div
className
=
"rank__table"
>
<
div
className
=
"rank__table"
>
<
dl
className
=
"rank__table-header"
>
<
dl
className
=
"rank__table-header"
>
<
dd
className
=
"rank__table-column"
>
排名
<
/dd
>
<
dd
className
=
"rank__table-column"
>
排名
<
/dd
>
...
@@ -84,6 +104,12 @@ class BlessingRank extends Component {
...
@@ -84,6 +104,12 @@ class BlessingRank extends Component {
))
))
}
}
<
/div
>
<
/div
>
<
Popup
visible
=
{
isAddress
}
title
=
"收货信息"
>
<
AddressPopup
handleToHide
=
{()
=>
this
.
handleToSwitch
(
false
)}
/
>
<
/Popup
>
<
/div
>
<
/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