specialDetail.js 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379
  1. import 'css/newMenu/public.css';
  2. import 'css/newMenu/header.css'
  3. import 'css/newMenu/special.css';
  4. import 'css/newMenu/quill.bubble.css';
  5. import 'js/public.js';
  6. $(function(){
  7. var thePageNo = 1,
  8. thePageLength = 1,
  9. pageSize = 4;
  10. init();
  11. function init(){
  12. //初始处理
  13. $('.totalCommit').empty();
  14. initState();
  15. //分享
  16. share();
  17. //写答案、写想法
  18. write();
  19. //收藏关注跳转
  20. jumpFollow();
  21. //点赞
  22. fabulous();
  23. //评论点
  24. commentClick();
  25. };
  26. function commentClick(){
  27. $('.commentDz').click(function(){
  28. if($(this).hasClass('active')){
  29. $(this).removeClass('active');
  30. $('.commentBody').hide();
  31. }else{
  32. $(this).addClass('active');
  33. $('.commentBody').show();
  34. loadDate();
  35. pLun();
  36. }
  37. })
  38. };
  39. //获取id
  40. function getRequest() {
  41. var url = window.location.search; //获取url中"?"符后的字串
  42. var theRequest = new Object();
  43. if (url.indexOf("?") != -1) {
  44. var str = url.substr(1),
  45. strs = str.split("&");
  46. for (var i = 0; i < strs.length; i++) {
  47. theRequest[strs[i].split("=")[0]] = unescape(strs[i].split("=")[1]);
  48. }
  49. }
  50. return theRequest;
  51. };
  52. //评论数据获取
  53. function loadDate(pageNo) {
  54. $('.commentList').hide()
  55. let ids = getRequest().id;
  56. $.ajax({
  57. method: "get",
  58. dataType: "json",
  59. url: globalConfig.context + "/open/unlanded/comment/list",
  60. data: {
  61. pageNo: pageNo || 1,
  62. pageSize:4,
  63. commodityId:ids
  64. },
  65. success: function (data) {
  66. var theArrs = [];
  67. if(data&&data.error.length){
  68. msg(data.error[0].message)
  69. };
  70. if(data.data.totalCommentCount==0){
  71. return;
  72. };
  73. if (data.data && data.data.comments.list.length) {
  74. let nub = data.data.comments.list.length;
  75. for (let i = 0; i < nub; i++) {
  76. let thisdata = data.data.comments.list[i],
  77. times =thisdata.createTime?new Date(thisdata.createTime).toLocaleString():'';
  78. if(thisdata.uname.indexOf('游客')>-1){
  79. name='匿名'
  80. }else{
  81. name=thisdata.uname
  82. };
  83. theArrs.push(`
  84. <li>
  85. <div>用户名:${name}<time>${times}</time></div>
  86. <p>${(thisdata.content).replace(/<.*?>/g, "")}</p>
  87. </li>`);
  88. };
  89. };
  90. $('.commentList').show();
  91. $('.totalCommit').html(`${data.data.totalCommentCount}条评论`)
  92. $('.commentList>ul').empty();
  93. $('.commentList>ul').append(theArrs.join(''));
  94. if (!(data.data.comments.list.length)) {
  95. $('.commentList>ul').html("<div class='list_none'>暂无评论</div>");
  96. $('.pagination_box').css('display', 'none');
  97. }else{
  98. $('.pagination_box').css('display', 'block');
  99. }
  100. thePageLength = data.data.comments.totalCount ? Math.ceil(data.data.comments.totalCount / pageSize) : 1;
  101. $('.totalCount').html(`共${data.data.comments.totalCount}条数据 ${thePageLength}页`)
  102. var pageArr = [],
  103. firstNo = 1,
  104. endNo = 5;
  105. if (thePageNo > 3) {
  106. firstNo = thePageNo - 2;
  107. endNo = Math.min((Number(thePageNo) + 2), thePageLength);
  108. } else {
  109. endNo = Math.min(thePageLength, 5);
  110. };
  111. for (let i = firstNo; i <= endNo; i++) {
  112. if (i == thePageNo) {
  113. pageArr.push(
  114. '<li class="pageNumber active"><a href="#" value=' + i + ' >' + i + '</a></li>'
  115. );
  116. } else {
  117. pageArr.push(
  118. '<li class="pageNumber"><a href="#" value=' + i + ' >' + i + '</a></li>'
  119. );
  120. }
  121. };
  122. $('.pageNumber').remove();
  123. $('.pagePre').after(pageArr.join(''));
  124. pages();
  125. }
  126. });
  127. };
  128. //点赞
  129. function fabulous(){
  130. $('.fabulous').click(function(){
  131. if($(this).hasClass('active')) return;
  132. let nut = $(this).find('span').text(),
  133. _this=$(this);
  134. $(this).addClass('active');
  135. $.ajax({
  136. method:'get',
  137. url:globalConfig.context+'/portal/special/addStar',
  138. dataType:'json',
  139. data:{
  140. id:getRequest().id
  141. },
  142. success:function(data){
  143. if(data.error&&data.error.length){
  144. msg(data.error[0].message);
  145. return;
  146. }
  147. _this.find('span').text(parseInt(nut)+1);
  148. _this.removeClass('active');
  149. }
  150. })
  151. });
  152. };
  153. //f分页
  154. function pages() {
  155. $('.pagination').on('click', 'li', function (e) {
  156. e.preventDefault();
  157. if (this.className === 'pagePre') {
  158. if (thePageNo > 1) {
  159. thePageNo = 1;
  160. loadDate(thePageNo);
  161. }
  162. } else if (this.className === 'pageNext') {
  163. if (thePageNo < thePageLength) {
  164. thePageNo = thePageLength;
  165. loadDate(thePageNo);
  166. }
  167. } else {
  168. var nextPageNo = $(this).children()[0].text;
  169. if (thePageNo != nextPageNo) {
  170. $(this).siblings("li").removeClass("active");
  171. $(this).addClass("active");
  172. thePageNo = nextPageNo;
  173. loadDate(thePageNo);
  174. };
  175. };
  176. });
  177. }
  178. //关注
  179. colFun();
  180. function colFun(){
  181. $('.txt .heart').click(function (e) {
  182. let loginTxt=$('.head_login')[0];
  183. if(loginTxt&&($(loginTxt).text())=='登录'){
  184. window.location.hash='jump'
  185. msg('请先登录!')
  186. return false;
  187. }else{
  188. if(window.adminData&&window.adminData.mobile){
  189. msg('账号不正确,请退出重新登入。')
  190. return;
  191. }
  192. }
  193. e.preventDefault();
  194. e.stopPropagation();
  195. let nub=parseInt($(this).siblings('.nubCollect').text()),
  196. heart = $(this),
  197. id=$(this).parents('.txt').attr('data-id');
  198. if (heart.hasClass('active')) {
  199. $(this).removeClass('active')
  200. $(this).siblings('.nubCollect').text(nub-1);
  201. collectionApi(0,id,nub) //取消关注
  202. } else {
  203. $(this).addClass('active');
  204. $(this).siblings('.nubCollect').text(nub+1);
  205. collectionApi(1,id,nub) //关注
  206. }
  207. })
  208. }
  209. function collectionApi(index,ids,nub) {
  210. let url = index?'/api/user/portal/expertInterest':'/api/user/portal/expertCancelInterest';
  211. $.ajax({
  212. method: "post",
  213. dataType: "json",
  214. url: globalConfig.context + url,
  215. data: {
  216. id:ids
  217. },
  218. success: function (data) {
  219. if (data.error && data.error.length) {
  220. msg(data.error[0].message);
  221. }else{
  222. if(!index){
  223. $('#msg').val('取消关注')
  224. }else{
  225. $('#msg').val('关注成功,请至个人中心-我的关注查看.');
  226. }
  227. msg(index?'关注成功,请至个人中心-我的关注查看.':'取消关注');
  228. }
  229. }
  230. })
  231. };
  232. //评论数量
  233. function comNumber(){
  234. $.ajax({
  235. method:'get',
  236. url:globalConfig.context + '/portal/special/addComment',
  237. data:{
  238. id:getRequest().id
  239. }
  240. }).done(function(data){
  241. if(data.error&&data.error.length){
  242. msg(data.error[0].message);
  243. return ;
  244. }
  245. })
  246. };
  247. function jumpFollow(){
  248. $('.collection .myCollect').click(function(){
  249. let loginTxt=$('.head_login')[0];
  250. if(loginTxt&&($(loginTxt).text())=='登录'){
  251. $('.head_login').click();
  252. window.location.hash='jump';
  253. return false;
  254. }else{
  255. if(window.adminData&&window.adminData.mobile){
  256. msg('账号不正确,请退出重新登入。')
  257. return;
  258. }
  259. window.location.href= globalConfig.context+'/user/account/index.html#/collection';
  260. }
  261. });
  262. $('.collection .myFollow').click(function(){
  263. let loginTxt=$('.head_login')[0];
  264. if(loginTxt&&($(loginTxt).text())=='登录'){
  265. $('.head_login').click();
  266. window.location.hash='jump';
  267. return false;
  268. }else{
  269. if(window.adminData&&window.adminData.mobile){
  270. msg('账号不正确,请退出重新登入。')
  271. return;
  272. }
  273. window.location.href= globalConfig.context+'/user/account/index.html#/follow';
  274. }
  275. })
  276. };
  277. //评论
  278. function pLun(){
  279. $('.commentBody .btn').click(function(e){
  280. e.preventDefault();
  281. let val = $('.commentBody .search').val(),
  282. plNum = $('.commentDz span').text();;
  283. if(!val.trim()){
  284. $('#msg').val('请填写评论内容.')
  285. msg('请填写评论内容.');
  286. return ;
  287. };
  288. $.ajax({
  289. method:'post',
  290. dataType:'json',
  291. url:globalConfig.context+'/open/addComment',
  292. data:{
  293. commodityId:getRequest().id,
  294. content:val,
  295. star:5,
  296. commodityType:5
  297. }
  298. }).done(function(data){
  299. if(data&&data.error.length){
  300. msg(data.error[0].message)
  301. return;
  302. }
  303. msg('感谢您的评论.');
  304. $('.search').val('');
  305. let tt = parseInt(plNum);
  306. tt++;
  307. $('.commentDz span').text(tt);
  308. comNumber();
  309. loadDate(1);
  310. })
  311. })
  312. };
  313. function write(){
  314. $(' .writeXF div').click(function(){
  315. msg('敬请期待!');
  316. })
  317. }
  318. function initState(){
  319. $('.fengX').hover(function(){
  320. $(this).find('.fxWrap').show(10).addClass('active');
  321. },function(){
  322. $(this).find('.fxWrap').hide(200).removeClass('active');
  323. });
  324. };
  325. function share(){
  326. //好友
  327. document.querySelector('.qqHy').onclick=function(){
  328. let title = $('.detaiTitle h3').text(),
  329. img= $('.detaiTitle img').attr('src');
  330. shareQQ_friend(title, window.location.href, img)
  331. };
  332. //qq
  333. document.querySelector('.qqKj').onclick=function(){
  334. let title = $('.detaiTitle h3').text(),
  335. img= $('.detaiTitle img').attr('src');
  336. shareToQq(title, window.location.href, img)
  337. };
  338. //微博
  339. document.querySelector('.xlWb').onclick=function(){
  340. let title = $('.detaiTitle h3').text(),
  341. img= $('.detaiTitle img').attr('src');
  342. shareToXl(title,window.location.href,img);
  343. };
  344. };
  345. //分享
  346. function shareToQq(title, url, picurl) {
  347. var shareqqzonestring = 'http://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?summary=' + encodeURIComponent(title) + '&url=' +
  348. encodeURIComponent(url) + '&pics=' + encodeURIComponent(picurl)+'&title='+title;
  349. window.open(shareqqzonestring);
  350. }
  351. //微博
  352. function shareToXl(title,url,picurl){
  353. var sharesinastring='http://v.t.sina.com.cn/share/share.php?title='+title+'&url='+url+'&content=utf-8&sourceUrl='+url+'&pic='+picurl;
  354. window.open(sharesinastring);
  355. }
  356. //qq好友
  357. function shareQQ_friend(_title,_url,picurl){
  358. var _shareUrl = 'http://connect.qq.com/widget/shareqq/iframe_index.html?';
  359. _shareUrl += 'url=' + encodeURIComponent(_url); //分享的链接
  360. _shareUrl += '&title=' + encodeURIComponent(_title); //分享的标题
  361. _shareUrl+='&pics=' + encodeURIComponent(picurl)
  362. window.open(_shareUrl,'_blank','height=520, width=720');
  363. };
  364. //提示框渐隐函数
  365. function msg(txt) {
  366. if($('.smg').hasClass('active')){
  367. return ;
  368. }
  369. $('.smg').addClass('active');
  370. var lit = $('#msg').val(txt);
  371. setTimeout(function () {
  372. $('.smg').removeClass('active');
  373. $('#msg').val('');
  374. }, 2000)
  375. }
  376. })