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
b7a0a8bb
Commit
b7a0a8bb
authored
Aug 22, 2019
by
xuzhenghua
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug
parent
f1f9bc95
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
136 additions
and
59 deletions
+136
-59
src/common/CallApp/index.js
+1
-1
src/common/NavBar/index.js
+3
-3
src/components/detail/bargain/index.js
+4
-1
src/components/detail/btnstatus/index.js
+2
-4
src/components/detail/group/index.js
+2
-2
src/components/detail/index.js
+10
-9
src/components/detail/index.scss
+1
-1
src/components/detail/outline/index.js
+11
-3
src/components/detail/outline/index.scss
+2
-0
src/components/detail/single/index.js
+99
-34
src/components/purchased/index.js
+1
-1
No files found.
src/common/CallApp/index.js
View file @
b7a0a8bb
...
...
@@ -19,7 +19,7 @@ const options = {
},
appstore
:
"https://itunes.apple.com/cn/app/id1102275343?mt=8"
,
yingyongbao
:
"http://android.myapp.com/myapp/detail.htm?apkName=com.julyapp.julyonline"
,
fallback
:
"http://www
-test
.julyedu.com/weekend/redir1"
fallback
:
"http://www.julyedu.com/weekend/redir1"
}
class
OpenApp
extends
Component
{
...
...
src/common/NavBar/index.js
View file @
b7a0a8bb
import
React
from
'react'
;
import
{
NavLink
,
withRouter
}
from
'react-router-dom'
import
'./index.scss'
;
import
'./index.scss'
const
navLinkConfig
=
[
{
...
...
@@ -38,7 +38,7 @@ const NavBar = React.memo(({location}) => {
<
div
className
=
"nav-bar"
>
{
navLinkConfig
.
map
(
item
=>
{
let
{
icon
,
text
,
...
rest
}
=
item
let
{
icon
,
text
,
activeIcon
,
...
rest
}
=
item
return
(
<
NavLink
activeClassName
=
{
'active'
}
...
...
@@ -46,7 +46,7 @@ const NavBar = React.memo(({location}) => {
key
=
{
icon
}
{...
rest
}
>
<
i
className
=
{
`iconfont
${
location
.
pathname
.
startsWith
(
item
.
to
)
?
item
.
activeIcon
:
item
.
icon
}
`
}
/
>
<
i
className
=
{
`iconfont
${
item
.
to
.
length
>
1
?
location
.
pathname
.
startsWith
(
item
.
to
)
?
activeIcon
:
icon
:
location
.
pathname
===
item
.
to
?
activeIcon
:
icon
}
`
}
/
>
<
span
>
{
text
}
<
/span
>
<
/NavLink
>
)
...
...
src/components/detail/bargain/index.js
View file @
b7a0a8bb
...
...
@@ -29,7 +29,10 @@ class Bargain extends Component {
}
componentDidMount
()
{
this
.
getBargainInfo
()
const
{
user
=
{}
}
=
this
.
props
;
if
(
user
.
data
&&
user
.
data
.
uid
)
{
this
.
getBargainInfo
();
}
}
// 获取助理好友
...
...
src/components/detail/btnstatus/index.js
View file @
b7a0a8bb
...
...
@@ -39,8 +39,8 @@ class BtnStatus extends Component {
// }
componentWillReceiveProps
(
nextProps
)
{
const
{
data
=
{}}
=
nextProps
;
if
(
data
.
is_bargain
)
{
const
{
data
=
{}
,
user
=
{}
}
=
nextProps
;
if
(
data
.
is_bargain
&&
user
.
data
&&
user
.
data
.
uid
)
{
this
.
getBargainInfo
();
}
// if(nextProps.data && nextProps.data.is_bargain) {
...
...
@@ -234,12 +234,10 @@ class BtnStatus extends Component {
}
render
()
{
console
.
log
(
this
.
state
);
// data 课程信息;barInfo 砍价信息
const
{
user
=
{},
toCart
}
=
this
.
props
;
const
{
countdown
,
barInfo
,
courseInfo
:
info
=
{}}
=
this
.
state
;
const
uid
=
user
.
data
&&
user
.
data
.
uid
;
console
.
log
(
info
.
in_cart
);
return
(
<
div
>
{
/*正常购买*/
}
...
...
src/components/detail/group/index.js
View file @
b7a0a8bb
...
...
@@ -79,7 +79,7 @@ class Group extends Component {
if
(
courseInfo
.
pdd_group_info
)
{
let
now_groupon_list
=
courseInfo
.
pdd_group_info
.
now_groupon_list
;
if
(
now_groupon_list
&&
now_groupon_list
.
length
>
0
)
{
//
setInterval(() => {
setInterval
(()
=>
{
now_groupon_list
.
map
(
item
=>
{
item
.
end_time
-=
1
;
return
item
;
...
...
@@ -87,7 +87,7 @@ class Group extends Component {
this
.
setState
({
now_groupon_list
,
})
//
}, 1000);
},
1000
);
}
}
}
...
...
src/components/detail/index.js
View file @
b7a0a8bb
...
...
@@ -153,7 +153,6 @@ class Detail extends Component {
invitedFriends
=
()
=>
{
const
{
course_title
,
image_name
,
course_id
,
pdd_group_info
,
pdd_group_info
:
{
groupon_member
,
groupon_member
:
{
number
},
price
}}
=
this
.
state
.
course
.
course_info
;
if
(
browser
.
isWeixin
)
{
console
.
log
(
0
);
let
share
=
this
.
state
.
share
;
this
.
setState
({
share
:
!
share
,
...
...
@@ -221,9 +220,9 @@ class Detail extends Component {
// if (this.props.courseInfo.course_info) {
// courseInfo = this.props.courseInfo.course_info;
// service = courseInfo.service;
// if (courseInfo.group_status === 3 || courseI
nfo.group_status === 4) {
// number = courseI
nfo.pdd_group_info.groupon_member.number;
//
}
if
(
course_info
.
group_status
===
3
||
course_i
nfo
.
group_status
===
4
)
{
number
=
course_i
nfo
.
pdd_group_info
.
groupon_member
.
number
;
}
// }
const
{
share
,
countdown
,
list
,
outList
}
=
this
.
state
;
const
href
=
this
.
props
.
location
&&
this
.
props
.
location
.
state
?
this
.
props
.
location
.
state
.
href
:
undefined
;
...
...
@@ -360,15 +359,17 @@ class Detail extends Component {
{
share
?
(
<
div
className
=
'groupSuccessMbc'
onClick
=
{()
=>
{
this
.
setState
({
share
:
false
})
}}
>
<
div
className
=
'groupSuccessMbc'
onClick
=
{()
=>
{
this
.
setState
({
share
:
false
})
}}
>
<
div
className
=
'tipContent'
>
{
`还差
${
number
}
人,分享到3个群,成团率高达98%`
}
<
/div
>
<
div
className
=
'tipArrow'
>
<
i
className
=
'iconfont iconyindao'
><
/i
>
<
i
className
=
'iconfont iconyindao'
/
>
<
/div
>
<
/div
>
)
:
null
...
...
src/components/detail/index.scss
View file @
b7a0a8bb
...
...
@@ -13,7 +13,7 @@
border-radius
:
16px
0
0
16px
;
font-size
:
12px
;
color
:
$white
;
z-index
:
1
;
z-index
:
9
;
}
.course-content
{
margin
:
15px
12px
0
12px
;
...
...
src/components/detail/outline/index.js
View file @
b7a0a8bb
...
...
@@ -15,9 +15,17 @@ class OutLine extends Component {
}
htmlDecode
=
(
content
)
=>
{
let
e
=
document
.
createElement
(
'div'
);
e
.
innerHTML
=
content
;
return
e
.
childNodes
.
length
===
0
?
""
:
e
.
childNodes
[
0
].
nodeValue
;
// let e = document.createElement('div');
// e.innerHTML = content;
// return e.childNodes.length === 0 ? "" : e.childNodes[0].nodeValue;
if
(
content
)
{
content
=
content
.
replace
(
/</g
,
'<'
);
content
=
content
.
replace
(
/>/g
,
'>'
);
content
=
content
.
replace
(
/&gt;/g
,
''
);
content
=
content
.
replace
(
/"/g
,
'"'
);
content
=
content
.
replace
(
/&nbsp;/g
,
''
);
}
return
content
;
}
tabchange
=
(
tab
,
index
)
=>
{
...
...
src/components/detail/outline/index.scss
View file @
b7a0a8bb
...
...
@@ -151,6 +151,8 @@
.aist_open
{
background
:
url("../image/aist_open.png")
no-repeat
;
background-size
:
100%
100%
;
width
:
22px
;
height
:
22px
;
}
.aist_close
{
background
:
url("../image/close.png")
no-repeat
;
...
...
src/components/detail/single/index.js
View file @
b7a0a8bb
...
...
@@ -72,7 +72,7 @@ class Single extends Component {
}
// 支付宝支付
alipayPay
=
(
orderId
)
=>
{
http
.
get
(
`
${
API
[
'base-api'
]}
/pay/alipay/wap_charge/oid/
${
orderId
}
`
).
then
((
res
)
=>
{
http
.
get
(
`
${
API
[
'base-api'
]}
/pay/alipay/wap_charge
_new
/oid/
${
orderId
}
`
).
then
((
res
)
=>
{
if
(
res
.
data
.
errno
===
0
)
{
window
.
location
=
res
.
data
.
data
.
url
;
}
else
{
...
...
@@ -101,6 +101,7 @@ class Single extends Component {
}
// 微信内部支付
isweixinPay
=
()
=>
{
let
_this
=
this
;
let
weixin_code
=
getParam
(
'code'
)
if
(
weixin_code
)
{
if
(
getParam
(
'oid'
)
===
undefined
)
{
...
...
@@ -108,17 +109,71 @@ class Single extends Component {
}
else
{
http
.
get
(
`
${
API
[
'base-api'
]}
/pay/wxpay/pub_charge/oid/
${
getParam
(
'oid'
)}
/code/
${
weixin_code
}
`
).
then
((
res
)
=>
{
if
(
res
.
data
.
errno
===
0
)
{
const
data
=
res
.
data
.
data
this
.
onBridgeReady
(
data
)
const
data
=
res
.
data
.
data
;
function
onBridgeReady
()
{
WeixinJSBridge
.
invoke
(
'getBrandWCPayRequest'
,
{
"appId"
:
data
.
appId
,
//公众号名称,由商户传入
"timeStamp"
:
data
.
timeStamp
,
//时间戳,自1970年以来的秒数
"nonceStr"
:
data
.
nonceStr
,
//随机串
"package"
:
data
.
package
,
"signType"
:
data
.
signType
,
//微信签名方式:
"paySign"
:
data
.
paySign
//微信签名
},
function
(
res
)
{
if
(
res
.
err_msg
==
"get_brand_wcpay_request:ok"
)
{
Toast
.
info
(
'支付成功'
,
2
);
_this
.
intervalPayStatus
=
setInterval
(
function
()
{
http
.
get
(
`
${
API
[
'base-api'
]}
/m/orderState/oid/
${
getParam
(
'oid'
)}
`
).
then
(
res
=>
{
if
(
res
.
data
.
errno
===
401
)
{
clearInterval
(
_this
.
intervalPayStatus
);
_this
.
intervalPayStatus
=
null
;
// 获取课程类型
http
.
get
(
`
${
API
.
home
}
/sys/orderStatus/
${
getParam
(
'oid'
)}
`
).
then
((
res
)
=>
{
if
(
res
.
data
.
data
.
errno
==
'200'
)
{
// 正常购买单集成功
this
.
setState
({
status
:
6
})
}
else
if
(
res
.
data
.
data
.
errno
==
'201'
)
{
// 0元参团
this
.
setState
({
status
:
4
})
}
else
if
(
res
.
data
.
data
.
errno
==
'202'
)
{
// 0元购
this
.
setState
({
status
:
3
})
}
else
if
(
res
.
data
.
data
.
errno
==
'203'
)
{
// 三天内特价
this
.
setState
({
nowPrice
:
res
.
data
.
data
.
data
.
now_price
,
laterPrice
:
res
.
data
.
data
.
data
.
three_day_later_price
,
status
:
2
})
}
else
{
Toast
.
info
(
res
.
data
.
data
.
msg
,
2
)
}
})
}
})
},
1000
)
}
else
{
alert
(
'支付失败'
)
}
}
)
}
if
(
typeof
WeixinJSBridge
==
"undefined"
)
{
if
(
document
.
addEventListener
)
{
document
.
addEventListener
(
'WeixinJSBridgeReady'
,
this
.
onBridgeReady
,
false
)
document
.
addEventListener
(
'WeixinJSBridgeReady'
,
onBridgeReady
,
false
)
}
else
if
(
document
.
attachEvent
)
{
document
.
attachEvent
(
'WeixinJSBridgeReady'
,
this
.
onBridgeReady
)
document
.
attachEvent
(
'onWeixinJSBridgeReady'
,
this
.
onBridgeReady
)
document
.
attachEvent
(
'WeixinJSBridgeReady'
,
onBridgeReady
)
document
.
attachEvent
(
'onWeixinJSBridgeReady'
,
onBridgeReady
)
}
}
else
{
this
.
onBridgeReady
()
onBridgeReady
()
}
}
else
{
Toast
.
info
(
res
.
data
.
msg
,
2
)
...
...
@@ -130,33 +185,43 @@ class Single extends Component {
// 支付完成之后获取状态
payCallback
=
()
=>
{
http
.
get
(
`
${
API
.
home
}
/sys/orderStatus/
${
getParam
(
'oid'
)}
`
).
then
((
res
)
=>
{
if
(
res
.
data
.
data
.
errno
==
'200'
)
{
// 正常购买单集成功
this
.
setState
({
status
:
6
})
}
else
if
(
res
.
data
.
data
.
errno
==
'201'
)
{
// 0元参团
this
.
setState
({
status
:
4
})
}
else
if
(
res
.
data
.
data
.
errno
==
'202'
)
{
// 0元购
this
.
setState
({
status
:
3
})
}
else
if
(
res
.
data
.
data
.
errno
==
'203'
)
{
// 三天内特价
this
.
setState
({
nowPrice
:
res
.
data
.
data
.
data
.
now_price
,
laterPrice
:
res
.
data
.
data
.
data
.
three_day_later_price
,
status
:
2
})
}
else
{
Toast
.
info
(
res
.
data
.
data
.
msg
,
2
)
}
})
const
_this
=
this
;
_this
.
intervalPayStatus
=
setInterval
(
function
()
{
http
.
get
(
`
${
API
[
'base-api'
]}
/m/orderState/oid/
${
getParam
(
'oid'
)}
`
).
then
(
res
=>
{
if
(
res
.
data
.
errno
===
401
)
{
clearInterval
(
_this
.
intervalPayStatus
);
_this
.
intervalPayStatus
=
null
;
// 获取课程类型
http
.
get
(
`
${
API
.
home
}
/sys/orderStatus/
${
getParam
(
'oid'
)}
`
).
then
((
res
)
=>
{
if
(
res
.
data
.
data
.
errno
==
'200'
)
{
// 正常购买单集成功
this
.
setState
({
status
:
6
})
}
else
if
(
res
.
data
.
data
.
errno
==
'201'
)
{
// 0元参团
this
.
setState
({
status
:
4
})
}
else
if
(
res
.
data
.
data
.
errno
==
'202'
)
{
// 0元购
this
.
setState
({
status
:
3
})
}
else
if
(
res
.
data
.
data
.
errno
==
'203'
)
{
// 三天内特价
this
.
setState
({
nowPrice
:
res
.
data
.
data
.
data
.
now_price
,
laterPrice
:
res
.
data
.
data
.
data
.
three_day_later_price
,
status
:
2
})
}
else
{
Toast
.
info
(
res
.
data
.
data
.
msg
,
2
)
}
})
}
})
},
1000
)
}
...
...
src/components/purchased/index.js
View file @
b7a0a8bb
...
...
@@ -48,7 +48,7 @@ class Purchased extends Component {
const
uid
=
user
&&
user
.
data
&&
user
.
data
.
uid
return
(
<
div
className
=
'purchased-box'
>
<
HeaderBar
arrow
=
{
true
}
title
=
'已购课程'
cart
=
{
false
}
h
ref
=
'/my'
/>
<
HeaderBar
arrow
=
{
true
}
title
=
'已购课程'
cart
=
{
false
}
toH
ref
=
'/my'
/>
<
Loading
isLoading
=
{
this
.
state
.
isLoading
}
>
{
this
.
state
.
data
&&
this
.
state
.
data
.
length
>
0
?
...
...
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