Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
YOHOBUYWAP
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
xuqi
9 years ago
Commit
06b08614f200a4d5a291ebfdcd403ecbddc60d66
1 parent
8a47f6e5
cart good chose
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
12 deletions
static/js/cart/gift-advance.js
static/js/cart/good.js
static/js/cart/gift-advance.js
View file @
06b0861
...
...
@@ -20,18 +20,17 @@ function getProductInfo(skn, promotionId) {
skn
:
skn
,
promotionId
:
promotionId
}).
then
(
function
(
res
)
{
if
(
!
res
)
{
tip
.
show
(
'网络错误'
);
return
;
}
if
(
res
.
code
===
200
)
{
chosePanel
.
show
({
cartInfo
:
res
.
data
});
cartInfo
:
res
.
data
,
cb
:
function
(
loc
)
{
window
.
location
.
href
=
loc
;
}
});
}
else
{
tip
.
show
(
res
.
message
||
'网络错误'
);
tip
.
show
(
res
.
message
);
}
}
).
fail
(
function
()
{
}
,
function
()
{
tip
.
show
(
'网络错误'
);
}).
always
(
function
()
{
loading
.
hideLoadingMask
();
...
...
static/js/cart/good.js
View file @
06b0861
...
...
@@ -107,12 +107,11 @@ $('.cart-goods').on('touchstart', '.checkbox', function() {
fast
:
true
});
history
.
go
(
0
);
}
else
{
tip
.
show
(
data
.
message
);
}
},
function
()
{
dialog
.
showDialog
({
autoHide
:
true
,
dialogText
:
'网络异常'
});
tip
.
show
(
'网络异常'
);
});
});
...
...
Please
register
or
login
to post a comment