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
b4b8d2dd
Commit
b4b8d2dd
authored
Nov 03, 2019
by
xuzhenghua
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
参团
parent
fb270b80
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
50 additions
and
20 deletions
+50
-20
src/components/activity/index.js
+2
-2
src/components/activity/invite.js
+30
-13
src/components/blessingPreheat/addressPopup/index.js
+3
-1
src/components/blessingPreheat/collectBlessing/index.js
+3
-2
src/components/detail/group/togroup.js
+4
-1
src/components/order/index.js
+8
-1
No files found.
src/components/activity/index.js
View file @
b4b8d2dd
...
...
@@ -11,8 +11,8 @@ class Activity extends Component {
}
componentWillMount
()
{
jsCookie
.
set
(
'blessing_invite_uid'
,
getParam
(
'shareuid'
));
jsCookie
.
set
(
'blessing_invite_code'
,
getParam
(
'inviteCode'
));
jsCookie
.
set
(
'blessing_invite_uid'
,
getParam
(
'shareuid'
)
,
{
domain
:
'.julyedu.com'
}
);
jsCookie
.
set
(
'blessing_invite_code'
,
getParam
(
'inviteCode'
)
,
{
domain
:
'.julyedu.com'
}
);
}
getGift
=
()
=>
{
...
...
src/components/activity/invite.js
View file @
b4b8d2dd
...
...
@@ -15,6 +15,7 @@ class Invite extends Component {
hotValue
:
0
,
hot_schedule
:
''
,
userList
:
[],
inviteCode
:
''
,
}
}
...
...
@@ -33,13 +34,16 @@ class Invite extends Component {
if
(
!
this
.
props
.
user
.
hasError
)
{
this
.
getUserList
();
this
.
getHotValue
();
this
.
getInviteCode
();
}
}
componentWillReceiveProps
(
nextProps
)
{
console
.
log
(
'componentWillReceiveProps'
);
if
(
!
nextProps
.
user
.
hasError
)
{
this
.
getUserList
();
this
.
getHotValue
();
this
.
getInviteCode
();
}
}
...
...
@@ -70,8 +74,33 @@ class Invite extends Component {
});
}
getInviteCode
=
()
=>
{
http
.
get
(
`
${
API
.
home
}
/sys/user/invite/link`
).
then
(
res
=>
{
let
{
code
,
data
,
msg
}
=
res
.
data
;
if
(
code
===
200
)
{
let
inviteCode
=
data
.
blessing_invite_code
;
if
(
is_weixin
())
{
wxShare
({
title
:
'AI充电节,积福气享1折秒课,超10万元奖品来就送!!'
,
desc
:
'把这门超5万人报名的【Python基础入门 升级版】课程送给你,附200元红包,请笑纳!--七月在线'
,
link
:
encodeURI
(
location
.
origin
+
`/invite?shareuid=
${
jsCookie
.
get
(
'uid'
)}
&new=1&inviteCode=
${
inviteCode
}
`
),
imgUrl
:
'https://julyedu-cdn.oss-cn-beijing.aliyuncs.com/active19_1111/m/index-share-img.png'
,
});
}
this
.
setState
(()
=>
({
inviteCode
:
inviteCode
}))
}
else
if
(
code
===
4030
||
code
===
4040
)
{
history
.
push
(
'/passport'
);
}
else
{
Toast
.
info
(
msg
,
2
);
}
});
}
inviteFriends
=
()
=>
{
const
{
user
,
history
}
=
this
.
props
;
const
{
inviteCode
}
=
this
.
state
;
// 未登录先去登录
if
(
getParam
(
'version'
))
{
if
(
user
.
hasError
)
{
...
...
@@ -89,10 +118,6 @@ class Invite extends Component {
if
(
user
.
hasError
)
{
history
.
push
(
'/passport'
);
}
else
{
http
.
get
(
`
${
API
.
home
}
/sys/user/invite/link`
).
then
(
res
=>
{
let
{
code
,
data
,
msg
}
=
res
.
data
;
if
(
code
===
200
)
{
let
inviteCode
=
data
.
blessing_invite_code
;
if
(
is_weixin
())
{
wxShare
({
title
:
'AI充电节,积福气享1折秒课,超10万元奖品来就送!!'
,
...
...
@@ -105,17 +130,11 @@ class Invite extends Component {
isWeiXin
:
true
,
});
}
else
{
history
.
push
(
`/invite?shareuid=
${
jsCookie
.
get
(
'uid'
)}
&new=1&inviteCode=
${
inviteCode
}
`
)
history
.
push
(
`/invite?shareuid=
${
jsCookie
.
get
(
'uid'
)}
&new=1&inviteCode=
${
inviteCode
}
`
);
this
.
setState
({
showTip
:
true
,
});
}
}
else
if
(
code
===
4030
||
code
===
4040
)
{
history
.
push
(
'/passport'
);
}
else
{
Toast
.
info
(
msg
,
2
);
}
});
}
}
}
...
...
@@ -147,11 +166,9 @@ class Invite extends Component {
<
p
>
当前中奖热力值
:
<
/p
>
<
p
className
=
"hot__value"
>
{
hotValue
}
<
/p
>
<
div
className
=
"hot__progress"
>
<
span
>
0
<
/span
>
<
div
className
=
"progress__bar"
>
<
div
className
=
"progress__point"
style
=
{{
'width'
:
hot_schedule
}}
><
/div
>
<
/div
>
<
span
>
3600
<
/span
>
<
/div
>
<
/div
>
<
/div
>
...
...
src/components/blessingPreheat/addressPopup/index.js
View file @
b4b8d2dd
...
...
@@ -77,6 +77,8 @@ class AddressPopup extends Component {
return
errors
;
}}
validateOnBlur
=
{
false
}
validateOnChange
=
{
false
}
onSubmit
=
{(
values
)
=>
{
this
.
handleToSubmit
(
values
);
}}
...
...
@@ -136,7 +138,7 @@ class AddressPopup extends Component {
/
>
<
button
className
=
"address-form__submit"
data
-
status
=
{
isEmpty
(
errors
)?
'do'
:
''
}
data
-
status
=
"do"
type
=
"submit"
>
提交
<
/button
>
<
/Form
>
...
...
src/components/blessingPreheat/collectBlessing/index.js
View file @
b4b8d2dd
...
...
@@ -55,7 +55,8 @@ class CollectBlessing extends Component {
};
}
qqToShare
=
()
=>
{
qqToShare
=
(
e
)
=>
{
e
.
preventDefault
();
const
{
uid
,
history
}
=
this
.
props
;
if
(
getParam
(
'version'
))
{
if
(
!
uid
)
{
...
...
@@ -287,7 +288,7 @@ class CollectBlessing extends Component {
<
a
className
=
"collect-blessing__share-button"
data
-
type
=
"qq"
onClick
=
{
this
.
qqToShare
}
onClick
=
{
(
e
)
=>
this
.
qqToShare
(
e
)
}
><
/a
>
<
a
className
=
"collect-blessing__share-button"
...
...
src/components/detail/group/togroup.js
View file @
b4b8d2dd
...
...
@@ -21,6 +21,7 @@ class ToGroup extends Component {
number
:
0
,
// 差几人成团
isBuy
:
false
,
modal
:
false
,
pddOrderId
:
''
}
}
...
...
@@ -57,6 +58,7 @@ class ToGroup extends Component {
person_num
:
res
.
data
.
data
.
person_num
,
course_list
:
res
.
data
.
data
.
course_list
,
number
:
res
.
data
.
data
.
number
,
pddOrderId
:
res
.
data
.
data
.
pdd_order_id
,
countdown
:
''
,
isBuy
:
res
.
data
.
data
.
is_buy
});
...
...
@@ -101,7 +103,8 @@ class ToGroup extends Component {
history
.
push
(
`/order?id=
${
data
.
course_id
}
`
,
{
group
:
1
group
:
1
,
pdd_order_id
:
this
.
state
.
pddOrderId
}
)
}
else
{
...
...
src/components/order/index.js
View file @
b4b8d2dd
...
...
@@ -135,7 +135,11 @@ class Order extends Component {
Toast
.
info
(
'请完善报名信息!'
);
}
const
{
location
:
{
state
=
{}
}
}
=
this
.
props
;
if
(
state
.
group
===
1
)
{
console
.
log
(
state
)
let
params
=
state
.
pdd_order_id
?
{
course_id
:
getParam
(
"id"
),
ischeck
:
this
.
state
.
useBalance
,
...
...
@@ -153,7 +157,10 @@ class Order extends Component {
}
this
.
props
.
history
.
push
(
`/payorder?oid=
${
res
.
data
.
data
.
oid
}
`
,
{
group
:
1
});
}
else
{
}
else
if
(
Number
(
res
.
data
.
errno
)
===
0
){
Toast
.
info
(
res
.
data
.
data
.
msg
,
2
);
return
;
}
else
{
Toast
.
info
(
res
.
data
.
msg
,
2
);
return
;
}
...
...
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