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
4185af50
Commit
4185af50
authored
Dec 20, 2019
by
FE
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '00-formal' into dev
parents
3f5a120d
73694efd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
5 deletions
+13
-5
src/components/bargainMiddlePage/index.js
+13
-5
No files found.
src/components/bargainMiddlePage/index.js
View file @
4185af50
...
@@ -153,11 +153,15 @@ class BargainMiddlePage extends Component {
...
@@ -153,11 +153,15 @@ class BargainMiddlePage extends Component {
// 直接支付
// 直接支付
toCart
=
()
=>
{
toCart
=
()
=>
{
http
.
get
(
`
${
API
[
'base-api'
]}
/m/cart/addtopreorder/[
${
getParam
(
'id'
)}
]`
).
then
((
res
)
=>
{
const
{
history
}
=
this
.
props
;
if
(
res
.
data
.
errno
===
0
)
{
http
.
get
(
`
${
API
[
'base-api'
]}
/m/cart/addtopreorder/[
${
getParam
(
'id'
)}
]`
).
then
((
res
)
=>
{
const
{
errno
,
msg
}
=
res
.
data
;
if
(
errno
===
0
)
{
this
.
props
.
history
.
push
(
`/order?id=[
${
getParam
(
'id'
)}
]`
,
{
bargain
:
1
});
this
.
props
.
history
.
push
(
`/order?id=[
${
getParam
(
'id'
)}
]`
,
{
bargain
:
1
});
}
else
if
(
errno
===
4030
||
errno
===
4040
)
{
history
.
push
(
'/passport'
);
}
else
{
}
else
{
Toast
.
info
(
res
.
data
.
msg
,
2
);
Toast
.
info
(
msg
,
2
);
}
}
})
})
// let data = {
// let data = {
...
@@ -204,19 +208,23 @@ class BargainMiddlePage extends Component {
...
@@ -204,19 +208,23 @@ class BargainMiddlePage extends Component {
// 领取砍价神器
// 领取砍价神器
toArtifact
=
()
=>
{
toArtifact
=
()
=>
{
const
{
history
}
=
this
.
props
;
const
{
course
:
{
course_id
=
''
}
}
=
this
.
state
;
const
{
course
:
{
course_id
=
''
}
}
=
this
.
state
;
let
data
=
{
let
data
=
{
courseId
:
getParam
(
'id'
)?
getParam
(
'id'
)
:
course_id
courseId
:
getParam
(
'id'
)?
getParam
(
'id'
)
:
course_id
}
}
http
.
post
(
`
${
API
.
home
}
/m/bargain/receiveLimit`
,
data
).
then
((
res
)
=>
{
http
.
post
(
`
${
API
.
home
}
/m/bargain/receiveLimit`
,
data
).
then
((
res
)
=>
{
if
(
res
.
data
.
code
===
200
)
{
const
{
code
,
msg
}
=
res
.
data
;
if
(
code
===
200
)
{
this
.
setState
({
this
.
setState
({
isShowOverlay
:
true
,
isShowOverlay
:
true
,
status
:
5
,
status
:
5
,
});
});
this
.
getBargainInfo
();
this
.
getBargainInfo
();
}
else
if
(
code
===
4030
||
code
===
4040
)
{
history
.
push
(
'/passport'
);
}
else
{
}
else
{
Toast
.
info
(
res
.
data
.
msg
,
2
)
Toast
.
info
(
msg
,
2
)
}
}
})
})
}
}
...
...
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