import 'css/newMenu/public.css'; import 'css/newMenu/header.css' import 'css/newMenu/special.css'; import 'js/public.js'; $(function(){ var thePageNo = 1, thePageLength = 1, pageSize = 6; init(); function init(){ //初始处理 initState(); //分享 share(); //写答案、写想法 write(); //收藏关注跳转 jumpFollow(); //点赞 fabulous(); //评论点 commentClick(); }; function commentClick(){ $('.commentDz').click(function(){ if($(this).hasClass('active')){ $(this).removeClass('active'); $('.commentBody').hide(); }else{ $(this).addClass('active'); $('.commentBody').show(); } }) } function fabulous(){ $('.fabulous').click(function(){ let nut = $(this).find('i').text(); $(this).find('i').text(parseInt(nut)+1); let ids = $(this).parents('.guide').find('input').val(); $.ajax({ method:'get', url:globalConfig.context+'xsxsx', dataType:'json', data:{ id:ids }, success:function(data){ if(data.error&&data.error.length){ msg(data.error[0].message); return; } } }) }); }; //f分页 function pages() { $('.pagination').on('click', 'li', function (e) { e.preventDefault(); if (this.className === 'pagePre') { if (thePageNo > 1) { thePageNo = 1; loadDate(thePageNo); } } else if (this.className === 'pageNext') { if (thePageNo < thePageLength) { thePageNo = thePageLength; loadDate(thePageNo); } } else { var nextPageNo = $(this).children()[0].text; if (thePageNo != nextPageNo) { $(this).siblings("li").removeClass("active"); $(this).addClass("active"); thePageNo = nextPageNo; loadDate(thePageNo); }; }; }); } //关注 colFun(); function colFun(){ $('.txt .heart').click(function (e) { let loginTxt=$('.head_login')[0]; if(loginTxt&&($(loginTxt).text())=='登录'){ window.location.hash='jump' msg('请先登录!') return false; }else{ if(window.adminData&&window.adminData.mobile){ msg('账号不正确,请退出重新登入。') return; } } e.preventDefault(); e.stopPropagation(); let nub=parseInt($(this).siblings('.nubCollect').text()), heart = $(this), id=$(this).parents('.txt').attr('data-id'); if (heart.hasClass('active')) { $(this).removeClass('active') $(this).siblings('.nubCollect').text(nub-1); collectionApi(0,id,nub) //取消关注 } else { $(this).addClass('active'); $(this).siblings('.nubCollect').text(nub+1); collectionApi(1,id,nub) //关注 } }) } function collectionApi(index,ids,nub) { let url = index?'/api/user/portal/expertInterest':'/api/user/portal/expertCancelInterest'; $.ajax({ method: "post", dataType: "json", url: globalConfig.context + url, data: { id:ids }, success: function (data) { if (data.error && data.error.length) { msg(data.error[0].message); }else{ if(!index){ $('#msg').val('取消关注') }else{ $('#msg').val('关注成功,请至个人中心-我的关注查看.'); } msg(index?'关注成功,请至个人中心-我的关注查看.':'取消关注'); } } }) }; function jumpFollow(){ $('.collection .myCollect').click(function(){ let loginTxt=$('.head_login')[0]; if(loginTxt&&($(loginTxt).text())=='登录'){ $('.head_login').click(); window.location.hash='jump'; return false; }else{ if(window.adminData&&window.adminData.mobile){ msg('账号不正确,请退出重新登入。') return; } window.location.href= globalConfig.context+'/user/account/index.html#/collection'; } }); $('.collection .myFollow').click(function(){ let loginTxt=$('.head_login')[0]; if(loginTxt&&($(loginTxt).text())=='登录'){ $('.head_login').click(); window.location.hash='jump'; return false; }else{ if(window.adminData&&window.adminData.mobile){ msg('账号不正确,请退出重新登入。') return; } window.location.href= globalConfig.context+'/user/account/index.html#/follow'; } }) }; function write(){ $(' .writeXF div').click(function(){ msg('敬请期待!'); }) } function initState(){ $('.fengX').hover(function(){ $(this).find('.fxWrap').show(10).addClass('active'); },function(){ $(this).find('.fxWrap').hide(200).removeClass('active'); }); }; function share(){ //好友 document.querySelector('.qqHy').onclick=function(){ let title = $('.detaiTitle h3').text(), img= $('.detaiTitle img').attr('src'); shareQQ_friend(title, window.location.href, img) }; //qq document.querySelector('.qqKj').onclick=function(){ let title = $('.detaiTitle h3').text(), img= $('.detaiTitle img').attr('src'); shareToQq(title, window.location.href, img) }; //微博 document.querySelector('.xlWb').onclick=function(){ let title = $('.detaiTitle h3').text(), img= $('.detaiTitle img').attr('src'); shareToXl(title,window.location.href,img); }; }; //分享 function shareToQq(title, url, picurl) { var shareqqzonestring = 'http://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?summary=' + encodeURIComponent(title) + '&url=' + encodeURIComponent(url) + '&pics=' + encodeURIComponent(picurl)+'&title='+title; window.open(shareqqzonestring); } //微博 function shareToXl(title,url,picurl){ var sharesinastring='http://v.t.sina.com.cn/share/share.php?title='+title+'&url='+url+'&content=utf-8&sourceUrl='+url+'&pic='+picurl; window.open(sharesinastring); } //qq好友 function shareQQ_friend(_title,_url,picurl){ var _shareUrl = 'http://connect.qq.com/widget/shareqq/iframe_index.html?'; _shareUrl += 'url=' + encodeURIComponent(_url); //分享的链接 _shareUrl += '&title=' + encodeURIComponent(_title); //分享的标题 _shareUrl+='&pics=' + encodeURIComponent(picurl) window.open(_shareUrl,'_blank','height=520, width=720'); }; //提示框渐隐函数 function msg(txt) { if($('.smg').hasClass('active')){ return ; } $('.smg').addClass('active'); var lit = $('#msg').val(txt); setTimeout(function () { $('.smg').removeClass('active'); $('#msg').val(''); }, 2000) } })