...
|
...
|
@@ -4,30 +4,31 @@ |
|
|
* @date: 2016/07/05
|
|
|
*/
|
|
|
|
|
|
var $ = require('yoho-jquery'),
|
|
|
var $ = require('yoho-jquery'),
|
|
|
lazyLoad = require('yoho-jquery-lazyload');
|
|
|
|
|
|
var prising;
|
|
|
|
|
|
lazyLoad($('#msg-list img.lazy'));
|
|
|
lazyLoad($('#msg-list img.lazy'));
|
|
|
|
|
|
$(".msg-nav li").on('click', function() {
|
|
|
var activeTab = $(this).attr("data-type"),
|
|
|
href = $(this).find('a').attr("href");
|
|
|
$('.msg-nav li').on('click', function() {
|
|
|
var activeTab = $(this).attr('data-type'),
|
|
|
href = $(this).find('a').attr('href');
|
|
|
|
|
|
$(".msg-nav li").removeClass("active");
|
|
|
$(this).addClass("active");
|
|
|
console.log(activeTab)
|
|
|
console.log(href)
|
|
|
$('.msg-nav li').removeClass('active');
|
|
|
$(this).addClass('active');
|
|
|
console.log(activeTab);
|
|
|
console.log(href);
|
|
|
});
|
|
|
|
|
|
$('.editorial-index-page').on('click', '.like-icon', function() {
|
|
|
var $this = $(this),
|
|
|
msgId = $this.closest('.content-msg').data().id,
|
|
|
url;
|
|
|
msgId = $this.closest('.content-msg').data().id;
|
|
|
|
|
|
// url;
|
|
|
|
|
|
//同一资讯多次点击归一处理
|
|
|
|
|
|
// 同一资讯多次点击归一处理
|
|
|
if (prising === msgId) {
|
|
|
return;
|
|
|
}
|
...
|
...
|
@@ -38,7 +39,7 @@ $('.editorial-index-page').on('click', '.like-icon', function() { |
|
|
$this.toggleClass('liked');
|
|
|
|
|
|
|
|
|
//点赞或取消点赞
|
|
|
// 点赞或取消点赞
|
|
|
// if ($this.hasClass('liked')) {
|
|
|
// url = '/guang/info/praise';
|
|
|
// } else {
|
...
|
...
|
|