achievementList.js 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369
  1. /*
  2. * @author:liting
  3. * @update:2018/05/19
  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/achievementList.css';
  11. import 'js/public.js';
  12. $(function () {
  13. var thePageNo = 1,
  14. thePageLength = 1,
  15. dataList = {},
  16. pageSize = 15;
  17. init();
  18. function init() {
  19. pages();
  20. inpFun();
  21. jump();
  22. hotSearch();
  23. $('.onSelect .preFirst').css('display', 'none')
  24. $('.onSelect .next').css('display', 'none')
  25. };
  26. //一级界面跳转此页面
  27. function jump() {
  28. let hash = window.location.search;
  29. if (hash) {
  30. if (hash.indexOf('name') > -1 || hash.indexOf('fieldA') > -1 ) {
  31. let newHash = hash.substr(1, hash.length)
  32. if (newHash.indexOf('&') > -1) {
  33. let hashArr = newHash.split('&');
  34. hashArr.map(item => {
  35. if (item.indexOf('name') > -1) {
  36. let names = item.split('=')
  37. dataList.name = decodeURIComponent(names[1]);
  38. $('.demandSearch').val(dataList.name);
  39. }
  40. if (item.indexOf('fieldA') > -1) {
  41. let topIds = item.split('=')
  42. dataList.topId = decodeURIComponent(topIds[1])
  43. }
  44. })
  45. } else {
  46. if (newHash.indexOf('name') > -1) {
  47. let names = newHash.split('=')
  48. dataList.name = decodeURIComponent(names[1])
  49. $('.demandSearch').val(dataList.name);
  50. }
  51. if (newHash.indexOf('fieldA') > -1) {
  52. let topIds = newHash.split('=')
  53. dataList.topId = decodeURIComponent(topIds[1])
  54. }
  55. }
  56. summary(dataList)
  57. loadDate()
  58. }
  59. } else {
  60. dataList.name = "",
  61. dataList.topId = "", //行业
  62. dataList.secondId = "" //类型
  63. loadDate();
  64. summary(dataList)
  65. }
  66. }
  67. //热搜
  68. function hotSearch() {
  69. $('.searchMain ol li').click(function () {
  70. let ind = $(this).index();
  71. if(!ind) return;
  72. $(this).addClass('active').siblings().removeClass('active');
  73. $('.searchMain ol li').eq(0).addClass('active');
  74. dataList.name = $(this).text().trim();
  75. $('.demandSearch').val(dataList.name);
  76. let index = $(this).index();
  77. $('.productionType ol').html(`<li data-id=''>不限</li>`);
  78. $('.industryList ul li').removeClass('active');
  79. $('.productionType ol li').removeClass('active')
  80. heightFun();
  81. if (index) {
  82. dataList.topId = '';
  83. dataList.secondId = '';
  84. loadDate();
  85. }
  86. })
  87. }
  88. function summary(dataList) {
  89. let hash = window.location.search;
  90. $.ajax({
  91. method: "get",
  92. dataType: "json",
  93. url: globalConfig.context + "/open/industryList",
  94. data: {
  95. },
  96. success: function (data) {
  97. var theArrs = [],proArr=[];
  98. if (data.data && data.data.length) {
  99. let thisdata = data.data;
  100. thisdata.unshift({
  101. id: '',
  102. name: '不限',
  103. children: [{
  104. id: '',
  105. name: '不限'
  106. },]
  107. })
  108. thisdata.map((item, index) => {
  109. if (index || hash) {
  110. if(dataList&&dataList.topId&&dataList.topId>=0&&dataList.topId==item.id){
  111. $('.onSelect .preFirst').css('display', 'block').html(`
  112. <span>${item.name}</span>
  113. `)
  114. theArrs.push(`
  115. <li class="active" data-id=${item.id}>${item.name}</li>
  116. `);
  117. let List = item.children
  118. List.map(atem=>{
  119. proArr.push(`
  120. <li data-id=${atem.id}>${atem.name}</li>
  121. `)
  122. })
  123. $('.productionType ol').html(proArr.join(''));
  124. }else{
  125. theArrs.push(`
  126. <li data-id=${item.id}>${item.name}</li>
  127. `)
  128. }
  129. } else {
  130. theArrs.push(`
  131. <li class="active" data-id=${item.id}>${item.name}</li>
  132. `)
  133. }
  134. })
  135. $('.industryList ul').html(theArrs);
  136. $('.industryList ul li').eq(0).className = "active";
  137. if(proArr.length){
  138. $('.productionType ol').html(proArr.join(''));
  139. }else{
  140. $('.productionType ol').html(`<li data-id=''>不限</li>`);
  141. }
  142. $('.productionType ol li ').eq(0).addClass = "active";
  143. heightFun();
  144. onSelect(thisdata);
  145. proFun();
  146. };
  147. }
  148. })
  149. }
  150. function heightFun(){
  151. let proH = $('.productionType ol').height(),industryH =$('.industryList ul').innerHeight();
  152. $('.industryList ul').css({height:industryH+'px'})
  153. $('.industry p').css({height:industryH+'px',lineHeight:industryH+'px'});
  154. $('.productionType p').css({height:proH+'px',lineHeight:proH+'px'})
  155. $('.productionType').css({height:proH+'px',lineHeight:proH+'px'})
  156. }
  157. function loadDate(pageNo) {
  158. $('.loading').show();
  159. $.ajax({
  160. method: "get",
  161. dataType: "json",
  162. url: globalConfig.context + "/open/achievementList",
  163. data: {
  164. pageNo: pageNo || 1,
  165. pageSize: 15,
  166. name: dataList.name,
  167. fieldA: dataList.topId, //行业
  168. fieldB: dataList.secondId //类型
  169. },
  170. success: function (data) {
  171. var theArrs = [];
  172. if(data&&data.error.length){
  173. msg(data.error[0].message)
  174. };
  175. let times = new Date().getTime();
  176. if (data.data && data.data.list.length) {
  177. let nub = data.data.list.length;
  178. for (let i = 0; i < nub; i++) {
  179. let thisdata = data.data.list[i],
  180. news = formatDuring(times)-formatDuring(thisdata.releaseDate);
  181. theArrs.push(`
  182. <li>
  183. <a href="${globalConfig.context}/portal/technologyTrading/achievementDetail?id=${thisdata.id}&type=${thisdata.dataCategory}">
  184. <div class="img achievemrntImg">
  185. ${thisdata.firstPicture&&thisdata.firstPicture!=null?'<img src="'+globalConfig.avatarHost+'/upload'+thisdata.firstPicture+'"/>':''}
  186. <span style="display:${news>7?'none':'block'}"></span>
  187. </div>
  188. <div class="txtIntroduce">
  189. <div class="txts">
  190. <h5 title="${thisdata.name}">${thisdata.name}</h5>
  191. <p><span>${thisdata.dataCategoryS?thisdata.dataCategoryS:'实用技术'}</span><span style="display:${thisdata.isHot&&thisdata.isHot!='null'?'block':'none'}" class="hotImg"></span></p>
  192. </div>
  193. <div class="hr"></div>
  194. <div class="btnTxt">
  195. <span class="float-left" style="display:${thisdata.fieldAS!=null?'block':'none'}">${thisdata.fieldAS}</span>
  196. </div>
  197. </div>
  198. </a>
  199. </li>`);
  200. };
  201. };
  202. $('.loading').hide().stop(true,true);
  203. $('.achievementHot .hotList').empty();
  204. $('.achievementHot .hotList').append(theArrs.join(''));
  205. $('.pagination_box').css('display', 'block');
  206. $('.inp').css('display', 'block');
  207. if (data.data.list.length === 0) {
  208. $('.achievementHot .hotList').html("<div class='list_none'></div>");
  209. $('.pagination_box').css('display', 'none')
  210. $('.inp').css('display', 'none');
  211. };
  212. thePageLength = data.data.totalCount ? Math.ceil(data.data.totalCount / pageSize) : 1;
  213. $('.totalCount').html(`共${data.data.totalCount}条数据 ${thePageLength}页`)
  214. var pageArr = [],
  215. firstNo = 1,
  216. thePageNo=pageNo||1,
  217. endNo = 5;
  218. if (thePageNo > 3) {
  219. firstNo = thePageNo - 2;
  220. endNo = Math.min((Number(thePageNo) + 2), thePageLength);
  221. } else {
  222. endNo = Math.min(thePageLength, 5);
  223. };
  224. for (let i = firstNo; i <= endNo; i++) {
  225. if (i == thePageNo) {
  226. pageArr.push(
  227. '<li class="pageNumber active"><a href="#" value=' + i + ' >' + i + '</a></li>'
  228. );
  229. } else {
  230. pageArr.push(
  231. '<li class="pageNumber"><a href="#" value=' + i + ' >' + i + '</a></li>'
  232. );
  233. }
  234. };
  235. $('.pageNumber').remove();
  236. $('.pagePre').after(pageArr.join(''));
  237. }
  238. });
  239. }
  240. //时间转换
  241. function formatDuring(mss) {
  242. var days = parseInt(mss / (1000 * 60 * 60 * 24));
  243. var hours = parseInt((mss % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
  244. var minutes = parseInt((mss % (1000 * 60 * 60)) / (1000 * 60));
  245. var seconds = (mss % (1000 * 60)) / 1000;
  246. return days ;
  247. }
  248. //f分页
  249. function pages() {
  250. $('.pagination').on('click', 'li', function (e) {
  251. e.preventDefault();
  252. if (this.className === 'pagePre') {
  253. if (thePageNo > 1) {
  254. thePageNo = 1;
  255. loadDate(thePageNo);
  256. }
  257. } else if (this.className === 'pageNext') {
  258. if (thePageNo < thePageLength) {
  259. thePageNo = thePageLength;
  260. loadDate(thePageNo);
  261. }
  262. } else {
  263. var nextPageNo = $(this).children()[0].text;
  264. if (thePageNo != nextPageNo) {
  265. $(this).siblings("li").removeClass("active");
  266. $(this).addClass("active");
  267. thePageNo = nextPageNo;
  268. loadDate(thePageNo);
  269. };
  270. };
  271. });
  272. }
  273. //输入跳转
  274. function inpFun() {
  275. $('.inp button').on('click', function () {
  276. let val = $(this).siblings().val();
  277. if (!isNaN(val) && val <= thePageLength && val > 0&&val%1=='0') {
  278. thePageNo = val;
  279. loadDate(thePageNo);
  280. }else{
  281. msg('请输入正确页码')
  282. }
  283. })
  284. }
  285. //已选类型
  286. function onSelect(data) {
  287. $('.industryList ul li').on('click', function () {
  288. $('.searchMain ol li').removeClass('active');
  289. $('.searchMain ol li').eq(0).addClass('active');
  290. let secondTxt = [],
  291. scondHtml = [];
  292. $(this).addClass('active').siblings().removeClass('active')
  293. dataList.topId = $(this).attr('data-id');
  294. dataList.name = '';
  295. dataList.secondId = '';
  296. $('.next').css('display', 'none')
  297. data.map(item => {
  298. if (item.id == dataList.topId) {
  299. secondTxt = item.children
  300. }
  301. })
  302. secondTxt.map(item => {
  303. scondHtml.push(`
  304. <li data-id=${item.id}>${item.name}</li>
  305. `)
  306. })
  307. if (!dataList.topId) {
  308. dataList.topId = '';
  309. dataList.secondId = '';
  310. $('.preFirst').html('不限');
  311. $('.next').css('display', 'none')
  312. scondHtml = ['<li>不限</li>'];
  313. }
  314. $('.productionType ol').html(scondHtml);
  315. heightFun();
  316. let txt = $(this).text();
  317. $('.onSelect .preFirst').css('display', 'block').html(`
  318. <span>${txt}</span>
  319. `)
  320. loadDate();
  321. proFun();
  322. });
  323. }
  324. function proFun(){
  325. $('.productionType ol li').on('click', function () {
  326. dataList.name = '';
  327. dataList.topId = $('.industryList ul li.active').attr('data-id');
  328. $(this).addClass('active').siblings().removeClass('active');
  329. dataList.secondId = $(this).attr('data-id');
  330. if (!dataList.secondId) return;
  331. let txt = $(this).text();
  332. $('.onSelect .next').css('display', 'block').html(`
  333. <span>${txt}</span>
  334. `)
  335. loadDate();
  336. })
  337. }
  338. $('.searchBtn').click(function () {
  339. let val = $('.demandSearch').val();
  340. $('.productionType ol').html(`<li data-id=''>不限</li>`);
  341. $('.industryList ul li').removeClass('active');
  342. $('.productionType ol li').removeClass('active')
  343. dataList.name = val;
  344. dataList.topId = '';
  345. dataList.secondId = '';
  346. loadDate();
  347. })
  348. /* 提示 */
  349. //提示框渐隐函数
  350. function msg(txt) {
  351. if($('.smg').hasClass('active')){
  352. return ;
  353. }
  354. $('.smg').addClass('active');
  355. var lit = $('#msg').val(txt);
  356. setTimeout(function () {
  357. $('.smg').removeClass('active');
  358. $('#msg').val('');
  359. }, 2000)
  360. }
  361. })