Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
yohobuy-node
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
1
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
刘传洋
8 years ago
Commit
a56bef3e1ac99bc5218b04008c7c8d9fe06507bb
1 parent
e66ad1cb
m
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
apps/cart/models/cart-service.js
public/js/cart/cart-goods-win.js
apps/cart/models/cart-service.js
View file @
a56bef3
...
...
@@ -375,10 +375,10 @@ const getProductInfoAsync = (pid, uid) => {
let
isFav
=
false
;
if
(
uid
)
{
if
(
uid
)
{
let
isFavRet
=
yield
cartApi
.
checkProductIsFav
(
uid
,
pid
);
if
(
isFavRet
&&
isFavRet
.
code
===
200
)
{
if
(
isFavRet
&&
isFavRet
.
code
===
200
)
{
isFav
=
isFavRet
.
data
;
}
}
...
...
public/js/cart/cart-goods-win.js
View file @
a56bef3
...
...
@@ -246,6 +246,7 @@ GoodsWinAction = {
if
(
$curSize
.
length
<=
0
)
{
$this
.
closest
(
'.detail-info'
).
find
(
'.size-p-tip'
).
show
();
// new Alert('请选择尺码').show();
return
false
;
}
...
...
Please
register
or
login
to post a comment