|
@@ -25,42 +25,9 @@ $('.editorial-index-page').on('click', '.like-icon', function() { |
|
@@ -25,42 +25,9 @@ $('.editorial-index-page').on('click', '.like-icon', function() { |
25
|
var $this = $(this),
|
25
|
var $this = $(this),
|
26
|
msgId = $this.closest('.content-msg').data().id;
|
26
|
msgId = $this.closest('.content-msg').data().id;
|
27
|
|
27
|
|
28
|
- // url;
|
|
|
29
|
-
|
|
|
30
|
-
|
|
|
31
|
- // 同一资讯多次点击归一处理
|
|
|
32
|
- if (prising === msgId) {
|
|
|
33
|
- return;
|
|
|
34
|
- }
|
|
|
35
|
-
|
|
|
36
|
- prising = msgId;
|
|
|
37
|
-
|
|
|
38
|
-
|
|
|
39
|
$this.toggleClass('liked');
|
28
|
$this.toggleClass('liked');
|
40
|
|
29
|
|
41
|
-
|
|
|
42
|
- // 点赞或取消点赞
|
|
|
43
|
- // if ($this.hasClass('liked')) {
|
|
|
44
|
- // url = '/guang/info/praise';
|
|
|
45
|
- // } else {
|
|
|
46
|
- // url = '/guang/info/cancelPraise';
|
|
|
47
|
- // }
|
|
|
48
|
-
|
|
|
49
|
- // $.ajax({
|
|
|
50
|
- // type: 'GET',
|
|
|
51
|
- // url: url,
|
|
|
52
|
- // data: {
|
|
|
53
|
- // id: msgId,
|
|
|
54
|
- // time: new Date().getTime()
|
|
|
55
|
- // }
|
|
|
56
|
- // }).then(function(data) {
|
|
|
57
|
- // if (data.code === 200) {
|
|
|
58
|
- // if (data.data * 1 === 0) {
|
|
|
59
|
- // $this.next('b').addClass('num-0').children('.num').html('0'); //隐藏数字显示
|
|
|
60
|
- // } else {
|
|
|
61
|
- // $this.next('b').removeClass('num-0').children('.num').html(data.data);
|
|
|
62
|
- // }
|
|
|
63
|
- // }
|
|
|
64
|
- // prising = false;
|
|
|
65
|
- // });
|
|
|
66
|
});
|
30
|
});
|
|
|
31
|
+
|
|
|
32
|
+require('../common/header');
|
|
|
33
|
+require('../common/return-top'); |