publicComment.js 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  1. /*评论 切换*/
  2. $(function () {
  3. let publicHash = window.location.search,
  4. publicHashArr = publicHash.split('='),
  5. piblicid =publicHashArr[1],
  6. publicIds = piblicid.split('&')[0];
  7. $('.tabEvaluate li').click(function () {
  8. let index = $(this).index();
  9. $(this).addClass('active').siblings().removeClass('active');
  10. $('.tabList>div').eq(index).show().siblings().hide();
  11. });
  12. pages();
  13. //评论列表
  14. loadDate();
  15. var thePageNo = 1,
  16. publicData={},
  17. thePageLength = 1,
  18. pageSize = 4;
  19. let hrefs = window.location.href;
  20. if(hrefs.indexOf('achievement')>-1){
  21. publicData.commodityType=1;
  22. }
  23. if(hrefs.indexOf('demand')>-1){
  24. publicData.commodityType=2;
  25. }
  26. function loadDate(pageNo) {
  27. $.ajax({
  28. method: "get",
  29. dataType: "json",
  30. url: globalConfig.context + "/open/unlanded/comment/list",
  31. data: {
  32. pageNo: pageNo || 1,
  33. pageSize: 4,
  34. commodityId: publicIds
  35. },
  36. success: function (data) {
  37. var theArrs = [];
  38. if (data && data.error.length) {
  39. msg(data.error[0].message)
  40. };
  41. if (data.data.totalCommentCount > 0) {
  42. let good = (((data.data.positiveCommentCount) / (data.data.totalCommentCount)) * 100).toFixed(1),
  43. middle = (((data.data.ordinaryCommentCount) / (data.data.totalCommentCount)) * 100).toFixed(1),
  44. bad = (100 - good - middle).toFixed(1);
  45. $('.commentDetails').html(`
  46. 评价 :<span>好评(${good+'%'})</span><span>中评(${middle+'%'})</span><span>差评(${bad+'%'})</span>
  47. `)
  48. } else {
  49. $('.commentDetails').html(`
  50. 评价 :<span>好评(100%)</span><span>中评(0%)</span><span>差评(0%)</span>
  51. `)
  52. }
  53. if (data.data && data.data.comments.list.length) {
  54. let nub = data.data.comments.list.length;
  55. for (let i = 0; i < nub; i++) {
  56. let thisdata = data.data.comments.list[i],
  57. name;
  58. let times = thisdata.createTime ? new Date(thisdata.createTime).toLocaleString() : '',
  59. star = thisdata.star;
  60. if (thisdata.uname.indexOf('游客') > -1) {
  61. name = '匿名'
  62. } else {
  63. name = thisdata.uname
  64. };
  65. theArrs.push(`
  66. <li>
  67. <div class="stasf">
  68. <p>用户名 :<span class="uName">${name}</span></p>
  69. <div class="satisfied">
  70. <span>满意度:</span>
  71. <ol>
  72. <li><span class="glyphicon ${star>=1?'glyphicon-star':'glyphicon-star-empty'} "></span></li>
  73. <li><span class="glyphicon ${star>=2?'glyphicon-star':'glyphicon-star-empty'}"></span></li>
  74. <li><span class="glyphicon ${star>=3?'glyphicon-star':'glyphicon-star-empty'}"></span></li>
  75. <li><span class="glyphicon ${star>=4?'glyphicon-star':'glyphicon-star-empty'}"></span></li>
  76. <li><span class="glyphicon ${star>=5?'glyphicon-star':'glyphicon-star-empty'}"></span></li>
  77. </ol>
  78. </div>
  79. </div>
  80. <div><time>${times}</time></div>
  81. <div class="satisfiedContent">
  82. <p>${thisdata.content}</p>
  83. </div>
  84. </li>`);
  85. };
  86. };
  87. $('.numberBars').html(data.data.totalCommentCount > 10 ? '10+' : data.data.totalCommentCount)
  88. $('.evaluateList>ul').empty();
  89. $('.evaluateList>ul').append(theArrs.join(''));
  90. if (!(data.data.comments.list.length)) {
  91. $('.evaluateList>ul').html("<div class='noComment'>暂无评论</div>");
  92. $('.pagination_box').css('display', 'none')
  93. } else {
  94. $('.pagination_box').css('display', 'block');
  95. }
  96. thePageLength = data.data.comments.totalCount ? Math.ceil(data.data.comments.totalCount / pageSize) : 1;
  97. $('.totalCount').html(`共${data.data.comments.totalCount}条数据 ${thePageLength}页`)
  98. var pageArr = [],
  99. thePageNo=pageNo||1,
  100. firstNo = 1,
  101. endNo = 5;
  102. if (thePageNo > 3) {
  103. firstNo = thePageNo - 2;
  104. endNo = Math.min((Number(thePageNo) + 2), thePageLength);
  105. } else {
  106. endNo = Math.min(thePageLength, 5);
  107. };
  108. for (let i = firstNo; i <= endNo; i++) {
  109. if (i == thePageNo) {
  110. pageArr.push(
  111. '<li class="pageNumber active"><a href="#" value=' + i + ' >' + i + '</a></li>'
  112. );
  113. } else {
  114. pageArr.push(
  115. '<li class="pageNumber"><a href="#" value=' + i + ' >' + i + '</a></li>'
  116. );
  117. }
  118. };
  119. $('.pageNumber').remove();
  120. $('.pagePre').after(pageArr.join(''));
  121. if(pageNo=='1'){
  122. $('.pagination ul li').eq(1).addClass('active').siblings().removeClass('active');
  123. }
  124. }
  125. });
  126. }
  127. //f分页
  128. function pages() {
  129. $('.pagination').on('click', 'li', function (e) {
  130. e.preventDefault();
  131. if (this.className === 'pagePre') {
  132. if (thePageNo > 1) {
  133. thePageNo = 1;
  134. loadDate(thePageNo);
  135. }
  136. } else if (this.className === 'pageNext') {
  137. if (thePageNo < thePageLength) {
  138. thePageNo = thePageLength;
  139. loadDate(thePageNo);
  140. }
  141. } else {
  142. var nextPageNo = $(this).children()[0].text;
  143. if (thePageNo != nextPageNo) {
  144. $(this).siblings("li").removeClass("active");
  145. $(this).addClass("active");
  146. thePageNo = nextPageNo;
  147. loadDate(thePageNo);
  148. };
  149. };
  150. });
  151. }
  152. //提示框渐隐函数
  153. function msg(txt) {
  154. if ($('.smg').hasClass('active')) {
  155. return;
  156. }
  157. txt ? $('#msg').val(txt) : '';
  158. $('.smg').addClass('active');
  159. var lit = $('#msg').val(txt);
  160. setTimeout(function () {
  161. $('.smg').removeClass('active');
  162. $('#msg').val('');
  163. }, 2000)
  164. }
  165. //评论星星
  166. star();
  167. function star() {
  168. $('.commentStar .ulStar span').hover(function () {
  169. $(this).addClass('glyphicon-star').removeClass('glyphicon-star-empty').prevAll().addClass('glyphicon-star').removeClass('glyphicon-star-empty');
  170. $(this).nextAll().removeClass('glyphicon-star').addClass('glyphicon-star-empty').stop(true);
  171. })
  172. }
  173. //新建评论
  174. addComment();
  175. function addComment() {
  176. $('.CommentSend .btn').click(function (e) {
  177. e.preventDefault();
  178. let starNum = $('.commentStar .ulStar span.glyphicon-star').length,
  179. textVal = $('#commentArea').val();
  180. if (!starNum) {
  181. msg('请您选择星级!');
  182. return;
  183. }
  184. if (!textVal) {
  185. msg('请您填写评论内容!');
  186. return;
  187. }
  188. $.ajax({
  189. method: 'post',
  190. url: globalConfig.context + "/open/addComment",
  191. dataType: 'json',
  192. data: {
  193. commodityId: publicIds,
  194. content: textVal,
  195. star: starNum,
  196. commodityType:publicData.commodityType
  197. }
  198. }).done(function (data) {
  199. if (data && data.error.length) {
  200. msg(data.error[0].message);
  201. return;
  202. }
  203. msg('评论成功,感谢您的评论。');
  204. $('#commentArea').val('');
  205. $('.ulStar span').removeClass('glyphicon-star').addClass('glyphicon-star-empty');
  206. loadDate(1);
  207. })
  208. })
  209. }
  210. })