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
yangyang
9 years ago
Commit
1350d7604fb77345c8be9d83df22d978f828b969
1 parent
a16bf3d0
修改ajax请求品牌收藏
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletions
yohobuy/www.yohobuy.com/application/modules/Product/controllers/Index.php
yohobuy/www.yohobuy.com/application/modules/Product/controllers/Index.php
View file @
1350d76
...
...
@@ -120,12 +120,13 @@ class IndexController extends WebAction
return
;
}
$uid
=
$this
->
post
(
'uid'
);
$brandId
=
$this
->
post
(
'brandId'
);
if
(
$uid
&&
$brandId
)
{
//调用接口收藏或取消收藏
$result
=
FavoriteData
::
changeFavoriteBrand
(
$uid
,
$brandId
);
if
(
isset
(
$result
[
'code'
])
&&
$result
[
'code'
]
==
200
)
{
$this
->
echoJson
(
$result
[
'message'
]
);
$this
->
echoJson
(
$result
);
}
}
}
...
...
Please
register
or
login
to post a comment