investmentInstitution.js 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. import '../../css/bootstrap.less';
  2. import 'bootstrap/dist/js/bootstrap.js';
  3. import '../../css/public.css';
  4. import '../../css/main_banner.css';
  5. import '../../js/public.js';
  6. import '../../js/main_banner.js';
  7. import '../../css/financial/investmentInstitution.css';
  8. import {
  9. provinceList
  10. } from '../../js/NewDicProvinceList';
  11. $(function(){
  12. //数据处理
  13. var theKeyword,pageSize,Province;
  14. var thePageNo = 1,
  15. thePageLength = 1,
  16. pageSize = 6;
  17. function loadDate(pageNo) {
  18. $.ajax({
  19. method: "get",
  20. dataType: "json",
  21. url: globalConfig.context + "/portal/financial/search",
  22. data: {
  23. pageNo: pageNo || 1,
  24. pageSize: pageSize,
  25. keyword: theKeyword,
  26. provinceId: Province != 999 ? Province : undefined
  27. },
  28. success: function (data) {
  29. var theArr = [];
  30. thePageLength = data.data.totalCount ? Math.ceil(data.data.totalCount / pageSize) : 1;
  31. if (data.data && data.data.list) {
  32. for (let i = 0; i < data.data.list.length; i++) {
  33. let thisdata = data.data.list[i];
  34. if(thisdata.publicityPictureUrl==null){
  35. thisdata.publicityPictureUrl=''
  36. }
  37. var imgUrl=thisdata.publicityPictureUrl!=''?thisdata.publicityPictureUrl:"/default/organization.jpg";
  38. theArr.push([
  39. '<li value="'+thisdata.id+'">',
  40. '<img src="' + globalConfig.avatarHost + '/upload' + imgUrl+'"/>',
  41. '<p>' + thisdata.companyName + '</p>',
  42. '<a href="">MORE+</a>',
  43. '</li>',
  44. ].join(''));
  45. };
  46. };
  47. $('.invest_imglist ul').empty();
  48. $('.invest_imglist ul').append(theArr.join(''));
  49. if(data.data.list.length===0){
  50. $('.invest_imglist ul').html('<div class="imgbg"></div>')
  51. }
  52. $('.totalCount').html("共 "+ thePageLength +" 页 " + data.data.totalCount + " 条数据");
  53. var pageArr = [],
  54. firstNo = 1,
  55. endNo = 5;
  56. if (thePageNo > 3) {
  57. firstNo = thePageNo - 2;
  58. endNo = Math.min((Number(thePageNo) + 2), thePageLength);
  59. } else {
  60. endNo = Math.min(thePageLength, 5);
  61. };
  62. for (let i = firstNo; i <= endNo; i++) {
  63. if (i == thePageNo) {
  64. pageArr.push(
  65. '<li class="pageNumber active"><a href="#" value=' + i + ' >' + i + '</a></li>'
  66. );
  67. } else {
  68. pageArr.push(
  69. '<li class="pageNumber"><a href="#" value=' + i + ' >' + i + '</a></li>'
  70. );
  71. }
  72. };
  73. $('.pageNumber').remove();
  74. $('.pagePre').after(pageArr.join(''));
  75. },
  76. });
  77. }
  78. if (window.location.search) {
  79. let theUrl = window.location.search
  80. theKeyword = theUrl.substring(1, theUrl.length);
  81. theKeyword = decodeURIComponent(theKeyword);
  82. $('#search_on input').val(theKeyword);
  83. var search_city=$('#selt').value;
  84. Province=search_city
  85. };
  86. loadDate();
  87. //点击分页
  88. $('.pagination').on('click', 'li', function (e) {
  89. e.preventDefault();
  90. if (this.className === 'pagePre') {
  91. if (thePageNo > 1) {
  92. thePageNo = 1;
  93. loadDate(thePageNo);
  94. }
  95. } else if (this.className === 'pageNext') {
  96. if (thePageNo < thePageLength) {
  97. thePageNo = thePageLength;
  98. loadDate(thePageNo);
  99. }
  100. } else {
  101. var nextPageNo = $(this).children()[0].text;
  102. if (thePageNo != nextPageNo) {
  103. $(this).siblings("li").removeClass("active");
  104. $(this).addClass("active");
  105. thePageNo = nextPageNo;
  106. loadDate(thePageNo);
  107. };
  108. };
  109. });
  110. //链接详情
  111. $('.invest_imglist ul').on('click', 'li', function () {
  112. var theId = $(this).attr('value');
  113. window.open(globalConfig.context + '/portal/financial/investmentDetail.html?organizationId=' + theId );
  114. })
  115. //搜索城市下拉
  116. var addlength=provinceList.length;
  117. var soption='';
  118. for(var i=0;i<addlength;i++){
  119. soption+="<option value='"+provinceList[i].id+"'>"+provinceList[i].name+"</option>";
  120. };
  121. $('#selt').html(soption);
  122. //导航城市添加
  123. var industryListArr = [],
  124. industryChildrenArr = [];
  125. industryListArr.push(['<li value="999" class="active">',
  126. '<span>',
  127. '不限',
  128. '</span>',
  129. '</li>',
  130. ].join(''));
  131. provinceList.map(function (item) {
  132. industryListArr.push(['<li value="' +item.id + '">',
  133. '<span>',
  134. item.name,
  135. '</span>',
  136. '</li>',
  137. ].join(''));
  138. });
  139. if (industryListArr && industryListArr.length) {
  140. $('#industryList').append(industryListArr.join(''));
  141. };
  142. //点击城市时
  143. $('#industryList li').click(function () {
  144. var theValue = this.value;
  145. $(this).siblings("li").removeClass("active");
  146. $(this).addClass("active");
  147. Province=theValue;
  148. loadDate();
  149. })
  150. //搜索时
  151. $('#btn_search').click(function(e){
  152. e.preventDefault();
  153. var citys=$('#industryList .active').attr('value');
  154. var val_inp=$('#search_on input').val();
  155. Province=citys;
  156. theKeyword=val_inp;
  157. loadDate();
  158. })
  159. })