specialDetail.js 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  1. import 'css/newMenu/public.css';
  2. import 'css/newMenu/header.css'
  3. import 'css/newMenu/special.css';
  4. import 'js/public.js';
  5. $(function(){
  6. var thePageNo = 1,
  7. thePageLength = 1,
  8. pageSize = 6;
  9. init();
  10. function init(){
  11. //初始处理
  12. initState();
  13. //分享
  14. share();
  15. //写答案、写想法
  16. write();
  17. //收藏关注跳转
  18. jumpFollow();
  19. //点赞
  20. fabulous();
  21. //评论点
  22. commentClick();
  23. };
  24. function commentClick(){
  25. $('.commentDz').click(function(){
  26. if($(this).hasClass('active')){
  27. $(this).removeClass('active');
  28. $('.commentBody').hide();
  29. }else{
  30. $(this).addClass('active');
  31. $('.commentBody').show();
  32. }
  33. })
  34. }
  35. function fabulous(){
  36. $('.fabulous').click(function(){
  37. let nut = $(this).find('i').text();
  38. $(this).find('i').text(parseInt(nut)+1);
  39. let ids = $(this).parents('.guide').find('input').val();
  40. $.ajax({
  41. method:'get',
  42. url:globalConfig.context+'xsxsx',
  43. dataType:'json',
  44. data:{
  45. id:ids
  46. },
  47. success:function(data){
  48. if(data.error&&data.error.length){
  49. msg(data.error[0].message);
  50. return;
  51. }
  52. }
  53. })
  54. });
  55. };
  56. //f分页
  57. function pages() {
  58. $('.pagination').on('click', 'li', function (e) {
  59. e.preventDefault();
  60. if (this.className === 'pagePre') {
  61. if (thePageNo > 1) {
  62. thePageNo = 1;
  63. loadDate(thePageNo);
  64. }
  65. } else if (this.className === 'pageNext') {
  66. if (thePageNo < thePageLength) {
  67. thePageNo = thePageLength;
  68. loadDate(thePageNo);
  69. }
  70. } else {
  71. var nextPageNo = $(this).children()[0].text;
  72. if (thePageNo != nextPageNo) {
  73. $(this).siblings("li").removeClass("active");
  74. $(this).addClass("active");
  75. thePageNo = nextPageNo;
  76. loadDate(thePageNo);
  77. };
  78. };
  79. });
  80. }
  81. //关注
  82. colFun();
  83. function colFun(){
  84. $('.txt .heart').click(function (e) {
  85. let loginTxt=$('.head_login')[0];
  86. if(loginTxt&&($(loginTxt).text())=='登录'){
  87. window.location.hash='jump'
  88. msg('请先登录!')
  89. return false;
  90. }else{
  91. if(window.adminData&&window.adminData.mobile){
  92. msg('账号不正确,请退出重新登入。')
  93. return;
  94. }
  95. }
  96. e.preventDefault();
  97. e.stopPropagation();
  98. let nub=parseInt($(this).siblings('.nubCollect').text()),
  99. heart = $(this),
  100. id=$(this).parents('.txt').attr('data-id');
  101. if (heart.hasClass('active')) {
  102. $(this).removeClass('active')
  103. $(this).siblings('.nubCollect').text(nub-1);
  104. collectionApi(0,id,nub) //取消关注
  105. } else {
  106. $(this).addClass('active');
  107. $(this).siblings('.nubCollect').text(nub+1);
  108. collectionApi(1,id,nub) //关注
  109. }
  110. })
  111. }
  112. function collectionApi(index,ids,nub) {
  113. let url = index?'/api/user/portal/expertInterest':'/api/user/portal/expertCancelInterest';
  114. $.ajax({
  115. method: "post",
  116. dataType: "json",
  117. url: globalConfig.context + url,
  118. data: {
  119. id:ids
  120. },
  121. success: function (data) {
  122. if (data.error && data.error.length) {
  123. msg(data.error[0].message);
  124. }else{
  125. if(!index){
  126. $('#msg').val('取消关注')
  127. }else{
  128. $('#msg').val('关注成功,请至个人中心-我的关注查看.');
  129. }
  130. msg(index?'关注成功,请至个人中心-我的关注查看.':'取消关注');
  131. }
  132. }
  133. })
  134. };
  135. function jumpFollow(){
  136. $('.collection .myCollect').click(function(){
  137. let loginTxt=$('.head_login')[0];
  138. if(loginTxt&&($(loginTxt).text())=='登录'){
  139. $('.head_login').click();
  140. window.location.hash='jump';
  141. return false;
  142. }else{
  143. if(window.adminData&&window.adminData.mobile){
  144. msg('账号不正确,请退出重新登入。')
  145. return;
  146. }
  147. window.location.href= globalConfig.context+'/user/account/index.html#/collection';
  148. }
  149. });
  150. $('.collection .myFollow').click(function(){
  151. let loginTxt=$('.head_login')[0];
  152. if(loginTxt&&($(loginTxt).text())=='登录'){
  153. $('.head_login').click();
  154. window.location.hash='jump';
  155. return false;
  156. }else{
  157. if(window.adminData&&window.adminData.mobile){
  158. msg('账号不正确,请退出重新登入。')
  159. return;
  160. }
  161. window.location.href= globalConfig.context+'/user/account/index.html#/follow';
  162. }
  163. })
  164. };
  165. function write(){
  166. $(' .writeXF div').click(function(){
  167. msg('敬请期待!');
  168. })
  169. }
  170. function initState(){
  171. $('.fengX').hover(function(){
  172. $(this).find('.fxWrap').show(10).addClass('active');
  173. },function(){
  174. $(this).find('.fxWrap').hide(200).removeClass('active');
  175. });
  176. };
  177. function share(){
  178. //好友
  179. document.querySelector('.qqHy').onclick=function(){
  180. let title = $('.detaiTitle h3').text(),
  181. img= $('.detaiTitle img').attr('src');
  182. shareQQ_friend(title, window.location.href, img)
  183. };
  184. //qq
  185. document.querySelector('.qqKj').onclick=function(){
  186. let title = $('.detaiTitle h3').text(),
  187. img= $('.detaiTitle img').attr('src');
  188. shareToQq(title, window.location.href, img)
  189. };
  190. //微博
  191. document.querySelector('.xlWb').onclick=function(){
  192. let title = $('.detaiTitle h3').text(),
  193. img= $('.detaiTitle img').attr('src');
  194. shareToXl(title,window.location.href,img);
  195. };
  196. };
  197. //分享
  198. function shareToQq(title, url, picurl) {
  199. var shareqqzonestring = 'http://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?summary=' + encodeURIComponent(title) + '&url=' +
  200. encodeURIComponent(url) + '&pics=' + encodeURIComponent(picurl)+'&title='+title;
  201. window.open(shareqqzonestring);
  202. }
  203. //微博
  204. function shareToXl(title,url,picurl){
  205. var sharesinastring='http://v.t.sina.com.cn/share/share.php?title='+title+'&url='+url+'&content=utf-8&sourceUrl='+url+'&pic='+picurl;
  206. window.open(sharesinastring);
  207. }
  208. //qq好友
  209. function shareQQ_friend(_title,_url,picurl){
  210. var _shareUrl = 'http://connect.qq.com/widget/shareqq/iframe_index.html?';
  211. _shareUrl += 'url=' + encodeURIComponent(_url); //分享的链接
  212. _shareUrl += '&title=' + encodeURIComponent(_title); //分享的标题
  213. _shareUrl+='&pics=' + encodeURIComponent(picurl)
  214. window.open(_shareUrl,'_blank','height=520, width=720');
  215. };
  216. //提示框渐隐函数
  217. function msg(txt) {
  218. if($('.smg').hasClass('active')){
  219. return ;
  220. }
  221. $('.smg').addClass('active');
  222. var lit = $('#msg').val(txt);
  223. setTimeout(function () {
  224. $('.smg').removeClass('active');
  225. $('#msg').val('');
  226. }, 2000)
  227. }
  228. })