demand.js 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317
  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/technologyTrading/demand.css';
  8. import '../../css/technologyTrading/achievement.css';
  9. import {
  10. provinceList
  11. } from '../../js/NewDicProvinceList';
  12. import {
  13. industryObject,
  14. getIndustryCategory
  15. } from '../DicIndustryList';
  16. $(function(){
  17. //页面里面的详情链接
  18. $(".main_introduce ul").on('click', 'li', function () {
  19. var ol_index= $(".title_details ol>li.act").index();
  20. var theId = $(this).attr('val');
  21. var thetype=$(this).attr('typ');
  22. window.open(globalConfig.context + '/portal/technologyTrading/demandDetail?id=' + theId+'&type='+thetype );
  23. });
  24. //数据处理
  25. var theKeyword, theMode, theFieldA, theFieldB,dataCategory,category,dateSort,budgetCostLower,budgetCostUpper;
  26. var thePageNo = 1,
  27. thePageLength = 1,
  28. pageSize = 12;
  29. var categoryObj = {
  30. "0": "技术购买型需求",
  31. "1": "技术设备类需求",
  32. "2": "技术方案型需求",
  33. "3": "技术攻关型需求",
  34. "4": "技术咨询型需求",
  35. "5": "技术人才型需求",
  36. };
  37. function loadDate(pageNo) {
  38. $.ajax({
  39. method: "get",
  40. dataType: "json",
  41. url: globalConfig.context + "/portal/search/demandList",
  42. data: {
  43. pageNo: pageNo || 1,
  44. pageSize: pageSize,
  45. keyword: theKeyword,
  46. sign: 0,
  47. demandType: theMode != 999 ? theMode : undefined,
  48. industryCategoryA: theFieldA != 999 ? theFieldA : undefined,
  49. industryCategoryB: theFieldB != 999 ? theFieldB : undefined,
  50. dateSort:dateSort,
  51. budgetCostLower:budgetCostLower,
  52. budgetCostUpper:budgetCostUpper
  53. },
  54. success: function (data) {
  55. var theArr = [];
  56. if (data.data && data.data.list) {
  57. for (let i = 0; i < data.data.list.length; i++) {
  58. let thisdata = data.data.list[i];
  59. var imgUrl=thisdata.pictureUrl!==null?thisdata.pictureUrl:"/img/timg.gif";
  60. var star='';
  61. for(var n=0;n<thisdata.maturity;n++){
  62. star+='<li></li>'
  63. }
  64. theArr.push([
  65. '<li val="'+thisdata.id+'" typ="'+thisdata.dataCategory+'">', //图片地址
  66. '<img src="' + globalConfig.avatarHost + '/upload' + imgUrl + '"/>',
  67. '<div class="list_text">',
  68. '<p>行业<span>' + getIndustryCategory(thisdata.industryCategoryA, thisdata.industryCategoryB) + '</span></p>',
  69. '<p>名称<span title=' + thisdata.name + '>' + thisdata.name + '</span></p>',
  70. '<p>类型<span>' + (thisdata.demandType ? categoryObj[thisdata.demandType] : '类型未知') + '</span></p>',
  71. '<p class="money">预算<span>'+ (thisdata.budgetCost ? (thisdata.budgetCost + '万元') : '价格面议') + '</span></p>',
  72. '<a href="#">了解详情</a>',
  73. '</div>',
  74. '<div class="star">',
  75. '<p>成熟度:<ol><li></li><li></li><li></li><li></li><li></li></ol></p>',
  76. '<ol>'+star+'</ol>',
  77. '</div>',
  78. '<input type="hidden" class="demandId" value="' + thisdata.id + '">',
  79. '<input type="hidden" class="demandType" value="' + thisdata.dataCategory + '">',
  80. '</li>',
  81. ].join(''));
  82. };
  83. };
  84. $('.main_introduce ul').empty();
  85. $('.main_introduce ul').append(theArr.join(''));
  86. $('.totalCount').html("共" + data.data.totalCount + "条数据");
  87. thePageLength = data.data.totalCount ? Math.ceil(data.data.totalCount / pageSize) : 1;
  88. var pageArr = [],
  89. firstNo = 1,
  90. endNo = 5;
  91. if (thePageNo > 3) {
  92. firstNo = thePageNo - 2;
  93. endNo = Math.min((Number(thePageNo) + 2), thePageLength);
  94. } else {
  95. endNo = Math.min(thePageLength, 5);
  96. };
  97. for (let i = firstNo; i <= endNo; i++) {
  98. if (i == thePageNo) {
  99. pageArr.push(
  100. '<li class="pageNumber active"><a href="#" value=' + i + ' >' + i + '</a></li>'
  101. );
  102. } else {
  103. pageArr.push(
  104. '<li class="pageNumber"><a href="#" value=' + i + ' >' + i + '</a></li>'
  105. );
  106. }
  107. };
  108. $('.pageNumber').remove();
  109. $('.pagePre').after(pageArr.join(''));
  110. },
  111. });
  112. }
  113. if (window.location.search) {
  114. let theUrl = window.location.search
  115. theKeyword = theUrl.substring(1, theUrl.length);
  116. theKeyword = decodeURIComponent(theKeyword);
  117. $('#search_on input').val(theKeyword);
  118. };
  119. loadDate();
  120. var industryListArr = [],
  121. industryChildrenArr = [];
  122. industryListArr.push(['<li value="999" class="active">',
  123. '<span>',
  124. '不限',
  125. '</span>',
  126. '</li>',
  127. ].join(''));
  128. industryObject.map(function (item) {
  129. industryListArr.push(['<li value="' + item.value + '">',
  130. '<span>',
  131. item.label,
  132. '</span>',
  133. '</li>',
  134. ].join(''));
  135. });
  136. if (industryListArr && industryListArr.length) {
  137. $('#industryList').append(industryListArr.join(''));
  138. };
  139. $('#industryList li').click(function () {
  140. var theValue = this.value;
  141. $(this).siblings("li").removeClass("active");
  142. $(this).addClass("active");
  143. industryChildrenArr = [];
  144. industryChildrenArr.push(['<li value="999" class="active">',
  145. '<span>',
  146. '不限',
  147. '</span>',
  148. '</li>',
  149. ].join(''));
  150. if (theValue !== 999) {
  151. $('#industryChildrenBox').css("display", "block");
  152. industryObject.map(function (item) {
  153. if (item.value == theValue) {
  154. item.children.map(function (child) {
  155. industryChildrenArr.push(['<li value="' + child.value + '">',
  156. '<span>',
  157. child.label,
  158. '</span>',
  159. '</li>',
  160. ].join(''));
  161. });
  162. };
  163. });
  164. } else {
  165. $('#industryChildrenBox').css("display", "none");
  166. };
  167. if (industryChildrenArr && industryChildrenArr.length) {
  168. $('#industryChildrenList').empty();
  169. $('#industryChildrenList').append(industryChildrenArr.join(''));
  170. };
  171. theFieldA = this.value;
  172. theFieldB = '999';
  173. loadDate();
  174. });
  175. $('#industryChildrenList').on('click', 'li', function () {
  176. $(this).siblings("li").removeClass("active");
  177. $(this).addClass("active");
  178. theFieldB = this.value;
  179. loadDate();
  180. });
  181. $('#technologyModeList').on('click', 'li', function () {
  182. $(this).siblings("li").removeClass("active");
  183. $(this).addClass("active");
  184. theMode = this.value;
  185. loadDate();
  186. });
  187. $('#btt_search').click(function () {
  188. theKeyword = $('#search_on input').val();
  189. loadDate();
  190. });
  191. $('.pagination').on('click', 'li', function (e) {
  192. e.preventDefault();
  193. if (this.className === 'pagePre') {
  194. if (thePageNo > 1) {
  195. thePageNo = 1;
  196. loadDate(thePageNo);
  197. }
  198. } else if (this.className === 'pageNext') {
  199. if (thePageNo < thePageLength) {
  200. thePageNo = thePageLength;
  201. loadDate(thePageNo);
  202. }
  203. } else {
  204. var nextPageNo = $(this).children()[0].text;
  205. if (thePageNo != nextPageNo) {
  206. $(this).siblings("li").removeClass("active");
  207. $(this).addClass("active");
  208. thePageNo = nextPageNo;
  209. loadDate(thePageNo);
  210. };
  211. };
  212. });
  213. $('main_introduce').on('click', 'li', function () {
  214. var theId = $(this).children(".demandId")[0].value;
  215. var theType = $(this).children(".demandType")[0].value;
  216. window.open(globalConfig.context + '/portal/detail/demandDetail.html?id=' + theId + '&type=' + theType);
  217. })
  218. $('#industryList li').click(function(){
  219. var text_ind=$(this).find('span').text();
  220. $('.achievement_header ul li').eq(0).show()
  221. $('.achievement_header ul li').eq(0).find('p').text(text_ind);
  222. })
  223. //搜索城市下拉
  224. var addlength=provinceList.length;
  225. var soption='';
  226. for(var i=0;i<addlength;i++){
  227. soption+="<option value='"+provinceList[i].id+"'>"+provinceList[i].name+"</option>";
  228. };
  229. $('#selt').html(soption);
  230. //全部结果查询
  231. $('.achievement_header ul li img').click(function(){
  232. $(this).parent().hide();
  233. var lilen=$('.achievement_header ul li').css('display');
  234. if(lilen=='none'){
  235. $('#search_on input').val('');
  236. $('.searchs button').click();
  237. }
  238. });
  239. $('.text_replace').hide()
  240. // 搜索功能关联关键字
  241. $('.searchs button').click(function(e){
  242. e.preventDefault();
  243. var search_txt=$('#search_on input').val();
  244. $('.text_replace span').text(search_txt);
  245. if(search_txt==''){
  246. $('.text_replace').hide()
  247. }else{
  248. $('.text_replace').show()
  249. }
  250. })
  251. //点击技术类型
  252. $('#technologyModeList li').click(function(){
  253. $('.achievement_header ul li').eq(1).show()
  254. $(this).addClass('active').siblings().removeClass('active')
  255. var txt_tech=$(this).find('span').text();
  256. $('.achievement_header ul li').eq(1).find('p').text(txt_tech);
  257. })
  258. //点击搜索下面的字段快捷搜索
  259. $('.head_right ol li').click(function () {
  260. theKeyword = $(this).text();
  261. $('#technologyModeList li').eq(0).addClass('active').siblings().removeClass('active');
  262. $('#transferModeList li').eq(0).addClass('active').siblings().removeClass('active');
  263. $('.achievement_header ul li').eq(0).show().siblings().hide();
  264. $('.achievement_header ul li').eq(0).find('p').text(theKeyword);
  265. $('#search_on input').val(theKeyword);
  266. loadDate();
  267. });
  268. //点击行业分类
  269. $('#industryList li').click(function(){
  270. $('.achievement_header ul li').eq(0).show();
  271. var text_ind=$(this).find('span').text();
  272. $('.achievement_header ul li').eq(0).find('p').text(text_ind);
  273. })
  274. //排序下拉选择
  275. $('.head-left ul li p').click(function(){
  276. $(this).siblings().slideToggle(300);
  277. })
  278. $('.head-left ul li').mouseleave(function(){
  279. $(this).find('.time_select').slideUp(300);
  280. })
  281. $('.time_select ul li').click(function(){
  282. var txt=$(this).text();
  283. $(this).parents('.time_select').siblings('p').find('span').text(txt);
  284. $('.time_select').hide();
  285. });
  286. $('.timeSelect li').click(function(){
  287. var timeTxt=$(this).attr('value');
  288. $('head-left ul li:first-child').removeClass('active')
  289. dateSort=timeTxt;
  290. loadDate();
  291. })
  292. //价格
  293. $('.inp_select input').keyup(function(){
  294. var val_min=$(this).val();
  295. if(val_min<0){
  296. $(this).val('0')
  297. }
  298. })
  299. $('.inp_select button').click(function(){
  300. var minpri=$('.inp_select #minprice').val();
  301. var maxpri=$('.inp_select #maxprice').val();
  302. budgetCostLower=minpri;
  303. budgetCostUpper=maxpri;
  304. loadDate();
  305. })
  306. $('#industryList li:first-child').click(function(){
  307. theFieldA = $(this).attr('value');
  308. theFieldB = '999';
  309. loadDate();
  310. })
  311. })