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
53019924c8dadff41b43951fef50c016fec56e01
1 parent
7b3347d4
guang info prise
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
6 deletions
static/js/guang/info.js
static/js/guang/info.js
View file @
5301992
...
...
@@ -51,21 +51,28 @@ function setLazyLoadAndMellipsis($infos) {
function
initInfosEvt
(
$container
)
{
$container
.
delegate
(
'.like-btn'
,
'touchstart'
,
function
(
e
)
{
var
$likeBtn
=
$
(
e
.
currentTarget
),
$info
=
$likeBtn
.
closest
(
'.guang-info'
);
$info
=
$likeBtn
.
closest
(
'.guang-info'
),
opt
=
'ok'
;
if
(
$likeBtn
.
hasClass
(
'like'
))
{
opt
=
'cancel'
;
}
$
.
ajax
({
type
:
'GET'
,
url
:
'/guang/info/prise'
,
//TODO:cancelPrise
type
:
'POST'
,
url
:
'/guang/opt/praiseArticle'
,
data
:
{
id
:
$info
.
data
(
'id'
)
id
:
$info
.
data
(
'id'
),
opt
:
opt
},
success
:
function
(
data
)
{
var
code
=
data
.
code
;
if
(
code
===
200
)
{
$likeBtn
.
next
(
'.like-count'
).
text
(
data
.
data
);
}
else
if
(
code
===
400
)
{
tip
.
show
(
'未登录'
);
//切换点赞状态
$likeBtn
.
toggleClass
(
'like'
);
}
},
error
:
function
()
{
...
...
Please
register
or
login
to post a comment