adviserList.js 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286
  1. /*
  2. * @author:liting
  3. * @update:2018/09/07
  4. *
  5. */
  6. // import 'css/bootstrap.less';
  7. // import 'bootstrap/dist/js/bootstrap.js';
  8. import 'css/newMenu/public.css';
  9. import 'css/newMenu/header.css'
  10. import 'css/newMenu/adviserList.css';
  11. import 'js/public.js';
  12. "use strict";
  13. $(function () {
  14. var thePageNo = 1,
  15. thePageLength = 1,
  16. dataList = {},
  17. pageSize = 6;
  18. init();
  19. function init() {
  20. pages();
  21. inpFun();
  22. search();
  23. jump();
  24. };
  25. //一级界面跳转此页面
  26. function jump() {
  27. let hash = window.location.search;
  28. if (hash) {
  29. if (hash.indexOf('name') > -1 || hash.indexOf('topId') > -1 || hash.indexOf('secondId') > -1) {
  30. let newHash = hash.substr(1, hash.length)
  31. if (newHash.indexOf('name') > -1) {
  32. let names = newHash.split('=')
  33. dataList.name = decodeURIComponent(names[1])
  34. $('.demandSearch').val(dataList.name);
  35. }
  36. loadDate()
  37. }
  38. } else {
  39. dataList.name = "",
  40. loadDate();
  41. }
  42. }
  43. function loadDate(pageNo) {
  44. $('.loading').show();
  45. $.ajax({
  46. method: "get",
  47. dataType: "json",
  48. url: globalConfig.context + "/api/portal/identity/consultantList",
  49. data: {
  50. pageNo: pageNo || 1,
  51. pageSize: pageSize,
  52. name: dataList.name,
  53. sortType:dataList.sortType
  54. },
  55. success: function (data) {
  56. var theArrs = [];
  57. if (data && data.error.length) {
  58. msg(data.error[0].message)
  59. };
  60. if (data.data && data.data.list.length) {
  61. let nub = data.data.list.length;
  62. for (let i = 0; i < nub; i++) {
  63. let thisdata = data.data.list[i],txtCont='';
  64. switch(thisdata.consultantType){
  65. case 0:
  66. txtCont='专利代理人';
  67. break;
  68. case 1:
  69. txtCont='专利顾问';
  70. break;
  71. case 2:
  72. txtCont='版权顾问';
  73. break;
  74. case 3:
  75. txtCont='商标顾问';
  76. break;
  77. default:
  78. txtCont="暂无";
  79. }
  80. theArrs.push(`
  81. <li>
  82. <div>
  83. <a href="${globalConfig.context}/portal/adviser/adviserDetail?id=${thisdata.uid}">
  84. ${thisdata.personPortraitUrl&&thisdata.personPortraitUrl!=null?'<img src="'+globalConfig.avatarHost+'/upload'+thisdata.personPortraitUrl+'"/>':''}
  85. <div class="txt" data-id=${thisdata.uid}>
  86. <div>
  87. <h4>${thisdata.username}<span>${txtCont}</span></h4>
  88. <p><span>好评率 ( ${thisdata.favorableRate} )</span><span class="nubCollect">${thisdata.countInterest}</span>${thisdata.interested?'<span class="heart active"></span>':'<span class="heart"></span>'}</p>
  89. </div>
  90. <p>${thisdata.introduction?thisdata.introduction:'暂无描述'}</p>
  91. </div>
  92. </a>
  93. </div>
  94. </li>
  95. `);
  96. };
  97. };
  98. $('.loading').hide().stop(true, true);
  99. $('.adviserList ul').empty();
  100. $('.adviserList ul').append(theArrs.join(''));
  101. $('.pagination_box').css('display', 'block');
  102. $('.inp').css('display', 'block');
  103. if (data.data.list.length === 0) {
  104. $('.adviserList ul').html("<div class='list_none'></div>");
  105. $('.pagination_box').css('display', 'none');
  106. $('.inp').css('display', 'none');
  107. };
  108. thePageLength = data.data.totalCount ? Math.ceil(data.data.totalCount / pageSize) : 1;
  109. $('.totalCount').html(`共${data.data.totalCount}条数据 ${thePageLength}页`)
  110. var pageArr = [],
  111. firstNo = 1,
  112. endNo = 5;
  113. if (thePageNo > 3) {
  114. firstNo = thePageNo - 2;
  115. endNo = Math.min((Number(thePageNo) + 2), thePageLength);
  116. } else {
  117. endNo = Math.min(thePageLength, 5);
  118. };
  119. for (let i = firstNo; i <= endNo; i++) {
  120. if (i == thePageNo) {
  121. pageArr.push(
  122. '<li class="pageNumber active"><a href="#" value=' + i + ' >' + i + '</a></li>'
  123. );
  124. } else {
  125. pageArr.push(
  126. '<li class="pageNumber"><a href="#" value=' + i + ' >' + i + '</a></li>'
  127. );
  128. }
  129. };
  130. $('.pageNumber').remove();
  131. $('.pagePre').after(pageArr.join(''));
  132. $('footer').show();
  133. colFun();
  134. }
  135. });
  136. }
  137. //f分页
  138. function pages() {
  139. $('.pagination').on('click', 'li', function (e) {
  140. e.preventDefault();
  141. if (this.className === 'pagePre') {
  142. if (thePageNo > 1) {
  143. thePageNo = 1;
  144. loadDate(thePageNo);
  145. }
  146. } else if (this.className === 'pageNext') {
  147. if (thePageNo < thePageLength) {
  148. thePageNo = thePageLength;
  149. loadDate(thePageNo);
  150. }
  151. } else {
  152. var nextPageNo = $(this).children()[0].text;
  153. if (thePageNo != nextPageNo) {
  154. $(this).siblings("li").removeClass("active");
  155. $(this).addClass("active");
  156. thePageNo = nextPageNo;
  157. loadDate(thePageNo);
  158. };
  159. };
  160. });
  161. }
  162. //输入跳转
  163. function inpFun() {
  164. $('.inp button').on('click', function () {
  165. let val = $(this).siblings().val();
  166. if (!isNaN(val) && val <= thePageLength && val > 0&&val%1=='0') {
  167. thePageNo = val;
  168. loadDate(thePageNo);
  169. } else {
  170. msg('请输入正确页码')
  171. }
  172. })
  173. }
  174. //搜索
  175. function search() {
  176. $('.searchBtn').click(function () {
  177. let val = $('.demandSearch').val();
  178. dataList.name = val;
  179. loadDate();
  180. })
  181. }
  182. /* 提示 */
  183. //提示框渐隐函数
  184. function msg(txt) {
  185. if ($('.smg').hasClass('active')) {
  186. return;
  187. }
  188. $('.smg').addClass('active');
  189. var lit = $('#msg').val(txt);
  190. setTimeout(function () {
  191. $('.smg').removeClass('active')
  192. $('#msg').val('');
  193. }, 2000)
  194. }
  195. //收藏
  196. function colFun(){
  197. $('.txt .heart').click(function (e) {
  198. let loginTxt=$('.head_login')[0];
  199. if(loginTxt&&($(loginTxt).text())=='登录'){
  200. window.location.hash='jump'
  201. msg('请先登录!')
  202. return false;
  203. }else{
  204. if(window.adminData&&window.adminData.mobile){
  205. msg('账号不正确,请退出重新登入。')
  206. return;
  207. }
  208. }
  209. e.preventDefault();
  210. e.stopPropagation();
  211. let nub=parseInt($(this).siblings('.nubCollect').text()),
  212. heart = $(this),
  213. id=$(this).parents('.txt').attr('data-id');
  214. if (heart.hasClass('active')) {
  215. $(this).removeClass('active')
  216. $(this).siblings('.nubCollect').text(nub-1);
  217. collectionApi(0,id,nub) //取消关注
  218. } else {
  219. $(this).addClass('active');
  220. $(this).siblings('.nubCollect').text(nub+1);
  221. collectionApi(1,id,nub) //关注
  222. }
  223. })
  224. }
  225. function collectionApi(index,ids,nub) {
  226. let url = index?'/api/user/portal/expertInterest':'/api/user/portal/expertCancelInterest';
  227. $.ajax({
  228. method: "post",
  229. dataType: "json",
  230. url: globalConfig.context + url,
  231. data: {
  232. id:ids
  233. },
  234. success: function (data) {
  235. if (data.error && data.error.length) {
  236. msg(data.error[0].message);
  237. }else{
  238. if(!index){
  239. $('#msg').val('取消关注')
  240. }else{
  241. $('#msg').val('关注成功,请至个人中心-我的关注查看.');
  242. }
  243. msg(index?'关注成功,请至个人中心-我的关注查看.':'取消关注');
  244. }
  245. }
  246. })
  247. }
  248. //排序调用接口
  249. sortFun();
  250. function sortFun(){
  251. $('.sort .relTime').click(function(){
  252. if($(this).hasClass('active')){
  253. $(this).removeClass('active');
  254. dataList.sortType='';
  255. thePageNo=1
  256. loadDate(thePageNo);
  257. }else{
  258. $('.colNumber').removeClass('active')
  259. $(this).addClass('active');
  260. dataList.sortType=0;
  261. thePageNo=1;
  262. loadDate(thePageNo);
  263. }
  264. })
  265. $('.sort .colNumber').click(function(){
  266. if($(this).hasClass('active')){
  267. $(this).removeClass('active');
  268. dataList.sortType='';
  269. thePageNo=1;
  270. loadDate(thePageNo);
  271. }else{
  272. $('.relTime').removeClass('active')
  273. $(this).addClass('active');
  274. dataList.sortType=1;
  275. thePageNo=1;
  276. loadDate(thePageNo);
  277. }
  278. })
  279. }
  280. })