...
|
...
|
@@ -116,15 +116,16 @@ function pageChange(self, $ul, page, itemWith, curPage, num) { |
|
|
'ACTION_ID': 0,
|
|
|
'page_num': 1
|
|
|
});
|
|
|
}, 100);
|
|
|
}, 4000);
|
|
|
|
|
|
$rcUl.find('li a').bind('click', function() {
|
|
|
var index = $(this).closest('li').index() + 1;
|
|
|
window.givePoint({
|
|
|
'REC_POSE': 120004,
|
|
|
'PRD_ID': $(this).data('id'),
|
|
|
'PRD_NUM': $(this).closest('li').index() + 1,
|
|
|
'PRD_NUM': index % 6 === 0 ? 6 : index % 6,
|
|
|
'ACTION_ID': 1,
|
|
|
'page_num': 1
|
|
|
'page_num': rcCurPage
|
|
|
});
|
|
|
return true;
|
|
|
});
|
...
|
...
|
|