patentList.js 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411
  1. /*
  2. * @author:liting
  3. * @update:2018/07/23
  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/patentList.css';
  11. import 'js/public.js';
  12. "use strict";
  13. $(function () {
  14. var thePageNo = 1,
  15. thePageLength = 1,
  16. dataList = {},
  17. pageSize = 12;
  18. init();
  19. function init() {
  20. pages();
  21. inpFun();
  22. summary();
  23. search();
  24. $('.onSelect .preFirst').css('display', 'none');
  25. $('.onSelect .next').css('display', 'none');
  26. $('.hot ul li').removeClass('active');
  27. };
  28. //一级界面跳转此页面
  29. function jump() {
  30. let hash = window.location.search;
  31. if (hash) {
  32. if (hash.indexOf('name') > -1 || hash.indexOf('topId') > -1 || hash.indexOf('secondId') > -1) {
  33. let newHash = hash.substr(1, hash.length)
  34. if (newHash.indexOf('&') > -1) {
  35. let hashArr = newHash.split('&');
  36. hashArr.map(item => {
  37. if (item.indexOf('name') > -1) {
  38. let names = item.split('=')
  39. dataList.name = decodeURIComponent(names[1])
  40. $('.demandSearch').val(dataList.name);
  41. }
  42. if (item.indexOf('topId') > -1) {
  43. let topIds = item.split('=')
  44. dataList.topId = decodeURIComponent(topIds[1]);
  45. dataList.data.map((item,index)=>{
  46. if(dataList.topId==item.topLevelId){
  47. $('.serviceList .industry').eq(index).find('.industryList ul li:eq(0)').addClass('active');
  48. $('.onSelect .preFirst').css('display', 'block').html(`
  49. <span>不限</span>
  50. `)
  51. }
  52. })
  53. }
  54. if (item.indexOf('secondId') > -1) {
  55. console.log(item.indexOf('secondId'));
  56. let secondIds = item.split('=')
  57. dataList.secondId = decodeURIComponent(secondIds[1])
  58. (dataList.data).map((item,index)=>{
  59. if((item.children).length){
  60. (item.children).map((atem,indexT)=>{
  61. if(dataList.secondId==atem.id){
  62. if(indexT>=3){
  63. heigFun(index)
  64. };
  65. $('.onSelect .preFirst').css('display', 'block').html(`
  66. <span>${atem.name}</span>
  67. `)
  68. $('.serviceList .industry').eq(index).find('.industryList ul li').eq(indexT+1).addClass('active');
  69. }
  70. })
  71. }
  72. })
  73. }
  74. })
  75. } else {
  76. if (newHash.indexOf('name') > -1) {
  77. let names = newHash.split('=')
  78. dataList.name = decodeURIComponent(names[1])
  79. $('.demandSearch').val(dataList.name);
  80. }
  81. if (newHash.indexOf('topId') > -1) {
  82. let topIds = newHash.split('=')
  83. dataList.topId = decodeURIComponent(topIds[1])
  84. dataList.data.map((item,index)=>{
  85. if(dataList.topId==item.topLevelId){
  86. $('.serviceList .industry').eq(index).find('.industryList ul li:eq(0)').addClass('active');
  87. }
  88. $('.onSelect .preFirst').css('display', 'block').html(`
  89. <span>不限</span>
  90. `)
  91. })
  92. }
  93. if (newHash.indexOf('secondId') > -1) {
  94. let secondIds = newHash.split('=')
  95. dataList.secondId = decodeURIComponent(secondIds[1]);
  96. (dataList.data).map((item,index)=>{
  97. if((item.children).length){
  98. (item.children).map((atem,indexT)=>{
  99. if(dataList.secondId==atem.id){
  100. if(indexT>=3){
  101. heigFun(index)
  102. };
  103. $('.onSelect .preFirst').css('display', 'block').html(`
  104. <span>${atem.name}</span>
  105. `)
  106. $('.serviceList .industry').eq(index).find('.industryList ul li').eq(indexT+1).addClass('active');
  107. }
  108. })
  109. }
  110. })
  111. }
  112. }
  113. loadDate()
  114. }
  115. } else {
  116. dataList.name = "",
  117. dataList.topId = "", //行业
  118. dataList.secondId = "" //类型
  119. dataList.ordetType=0;
  120. dataList.orderSort='';
  121. loadDate();
  122. }
  123. }
  124. function summary() {
  125. $.ajax({
  126. method: "get",
  127. dataType: "json",
  128. url: globalConfig.context + "/portal/service/jtBusiness/getCategoryList",
  129. data: {
  130. module: 1
  131. },
  132. success: function (data) {
  133. var theArrs = [];
  134. if (data.data && data.data.length) {
  135. let thisdata = data.data;
  136. dataList.data=thisdata;
  137. thisdata.map((item) => {
  138. theArrs.push(`
  139. <div class="industry" data="${item.topLevelId}"><p>${item.topLevel}</p><div class="industryList"><ul><li data-id=''>不限</li>
  140. `)
  141. if (item.children) {
  142. item.children.map(atem => {
  143. theArrs.push(`
  144. <li data-id=${atem.id}>${atem.name}</li>
  145. `)
  146. })
  147. theArrs.push(`
  148. </ul>
  149. </div>
  150. </div>
  151. `)
  152. }
  153. })
  154. $('.serviceList').html(theArrs.join(''));
  155. let ind = $('.serviceList .industry'),
  156. ulW = $('.industryList ul').width();
  157. for(let i=0;i<ind.length;i++){
  158. let thisUl=ind[i],totalW=0,
  159. othLis = $(thisUl).find('.industryList ul li');
  160. for(let j =0;j<othLis.length;j++){
  161. totalW+=othLis[j].offsetWidth;
  162. }
  163. if(totalW>ulW){
  164. $(thisUl).find('.industryList').append(`<a href="javascript:void(0);" class="more">更多+</a>`)
  165. }
  166. }
  167. onSelect(thisdata);
  168. jump();
  169. $('footer').show();
  170. };
  171. }
  172. })
  173. }
  174. function loadDate(pageNo=1) {
  175. $('.loading').show();
  176. $.ajax({
  177. method: "get",
  178. dataType: "json",
  179. url: globalConfig.context + "/portal/service/jtProject/list",
  180. data: {
  181. pageNo: pageNo || 1,
  182. pageSize: 12,
  183. name: dataList.name,
  184. topId: dataList.topId, //行业
  185. secondId: dataList.secondId, //类型
  186. privateProject: 1,
  187. auditStatus: 2,
  188. module: 1,
  189. orderType:dataList.ordetType,
  190. orderSort:dataList.orderSort
  191. },
  192. success: function (data) {
  193. var theArrs = [];
  194. if (data && data.error.length) {
  195. msg(data.error[0].message)
  196. };
  197. //销量数组
  198. var xLArr = [12,20,55,16,38,20,16,29,26,20,35,9,19,47,16,29,15,19,5,12,20,35,16,28,20,16,9,26,4,15,55,19,7,16,29,15,39,16]
  199. let times = new Date().getTime();
  200. if (data.data && data.data.list.length) {
  201. let nub = data.data.list.length;
  202. for (let i = 0; i < nub; i++) {
  203. let thisdata = data.data.list[i];
  204. theArrs.push(`
  205. <li dataId="${thisdata.id}">
  206. <div class="img serviceImg">
  207. ${thisdata.maxImgUrl&&thisdata.maxImgUrl!=null?'<img src="'+globalConfig.avatarHost+'/upload'+thisdata.maxImgUrl+'"/>':''}
  208. </div>
  209. <div class="txtIntroduce">
  210. <div class="txts">
  211. <h5>${thisdata.name}</h5>
  212. </div>
  213. <div class="btnTxt">
  214. <p>
  215. <span class="companyImg"></span>
  216. <a href="javascript:(0)" class="companyName">${thisdata.companyName}</a>
  217. <span class="number">销量 : ${parseInt(xLArr[parseInt(pageNo)+i])}</span>
  218. </p>
  219. </div>
  220. </div>
  221. </li>
  222. `);
  223. /* thisdata.dealCount?thisdata.dealCount:0 */
  224. };
  225. };
  226. $('.loading').hide().stop(true, true);
  227. $('.achievementHot .hotList').empty();
  228. $('.achievementHot .hotList').append(theArrs.join(''));
  229. $('.pagination_box').css('display', 'block');
  230. $('.inp').css('display', 'block');
  231. if (data.data.list.length === 0) {
  232. $('.achievementHot .hotList').html("<div class='list_none'></div>");
  233. $('.pagination_box').css('display', 'none');
  234. $('.inp').css('display', 'none');
  235. };
  236. thePageLength = data.data.totalCount ? Math.ceil(data.data.totalCount / pageSize) : 1;
  237. $('.totalCount').html(`共${data.data.totalCount}条数据 ${thePageLength}页`)
  238. var pageArr = [],
  239. firstNo = 1,
  240. thePageNo=pageNo||1,
  241. endNo = 5;
  242. if (thePageNo > 3) {
  243. firstNo = thePageNo - 2;
  244. endNo = Math.min((Number(thePageNo) + 2), thePageLength);
  245. } else {
  246. endNo = Math.min(thePageLength, 5);
  247. };
  248. for (let i = firstNo; i <= endNo; i++) {
  249. if (i == thePageNo) {
  250. pageArr.push(
  251. '<li class="pageNumber active"><a href="#" value=' + i + ' >' + i + '</a></li>'
  252. );
  253. } else {
  254. pageArr.push(
  255. '<li class="pageNumber"><a href="#" value=' + i + ' >' + i + '</a></li>'
  256. );
  257. }
  258. };
  259. $('.pageNumber').remove();
  260. $('.pagePre').after(pageArr.join(''));
  261. urlDetaile();
  262. }
  263. });
  264. }
  265. //详情跳转
  266. function urlDetaile(){
  267. $('.hotList>li').click(function(){
  268. let ids = $(this).attr('dataId');
  269. window.location.href=globalConfig.context+'/portal/service/patentDetail?id='+ids;
  270. })
  271. };
  272. //时间转换
  273. function formatDuring(mss) {
  274. var days = parseInt(mss / (1000 * 60 * 60 * 24));
  275. var hours = parseInt((mss % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
  276. var minutes = parseInt((mss % (1000 * 60 * 60)) / (1000 * 60));
  277. var seconds = (mss % (1000 * 60)) / 1000;
  278. return days;
  279. }
  280. //f分页
  281. function pages() {
  282. $('.pagination').on('click', 'li', function (e) {
  283. e.preventDefault();
  284. if (this.className === 'pagePre') {
  285. if (thePageNo > 1) {
  286. thePageNo = 1;
  287. loadDate(thePageNo);
  288. }
  289. } else if (this.className === 'pageNext') {
  290. if (thePageNo < thePageLength) {
  291. thePageNo = thePageLength;
  292. loadDate(thePageNo);
  293. }
  294. } else {
  295. var nextPageNo = $(this).children()[0].text;
  296. if (thePageNo != nextPageNo) {
  297. $(this).siblings("li").removeClass("active");
  298. $(this).addClass("active");
  299. thePageNo = nextPageNo;
  300. loadDate(thePageNo);
  301. };
  302. };
  303. });
  304. }
  305. //输入跳转
  306. function inpFun() {
  307. $('.inp button').on('click', function () {
  308. let val = $(this).siblings().val();
  309. if (!isNaN(val) && val <= thePageLength && val > 0&&val%1=='0') {
  310. thePageNo = val;
  311. loadDate(thePageNo);
  312. } else {
  313. msg('请输入正确页码')
  314. }
  315. })
  316. }
  317. //已选类型
  318. function onSelect(data) {
  319. $('.industryList ul li').on('click', function () {
  320. $('.industryList ul li').removeClass('active')
  321. $(this).addClass('active');
  322. dataList.secondId = $(this).attr('data-id');
  323. dataList.topId = $(this).parents('.industry').attr('data');
  324. dataList.name = '';
  325. let txt = $(this).text();
  326. $('.onSelect .preFirst').css('display', 'block').html(`
  327. <span>${txt}</span>
  328. `)
  329. loadDate();
  330. });
  331. //更多
  332. $('.industryList .more').click(function () {
  333. let index = $(this).parents('.industry').index();
  334. heigFun(index);
  335. })
  336. }
  337. function heigFun(index){
  338. let ulH = $('.serviceList .industry').eq(index).find('.industryList ').height();
  339. if ($('.industry').eq(index).hasClass('activeH')) {
  340. $('.industry').eq(index).removeClass('activeH');
  341. $('.industry').eq(index).height(52);
  342. $('.industry').eq(index).find('.more').text('更多+')
  343. $('.industry').eq(index).find('p').css({'height':'52px','line-height':'52px'})
  344. }else{
  345. $('.industry').eq(index).find('.more').text('收起')
  346. $('.industry').eq(index).addClass('activeH');
  347. $('.industry').eq(index).height(ulH);
  348. $('.industry').eq(index).find('p').css({'height':ulH+'px','line-height':ulH+'px'})
  349. }
  350. }
  351. //搜索
  352. function search() {
  353. $('.hot ul li span').click(function(){
  354. $(this).parents('ul').find('.sort span').removeClass('active');
  355. $(this).addClass('active');
  356. })
  357. $('.hot ul li:eq(0) span').click(function (e) {
  358. if((e.target.className).indexOf('up')>-1){
  359. dataList.ordetType=2;
  360. dataList.orderSort=1;
  361. }else{
  362. dataList.ordetType=2;
  363. dataList.orderSort=0
  364. }
  365. loadDate();
  366. });
  367. $('.hot ul li:eq(1) span').click(function (e) {
  368. if((e.target.className).indexOf('up')>-1){
  369. dataList.ordetType=1;
  370. dataList.orderSort=1;
  371. }else{
  372. dataList.ordetType=1;
  373. dataList.orderSort=0
  374. }
  375. loadDate();
  376. });
  377. $('.searchBtn').click(function () {
  378. let val = $('.demandSearch').val();
  379. $('.industry ul li').removeClass('active');
  380. $('.hot ul li .sort span').removeClass('active')
  381. $('.preFirst').hide();
  382. dataList.name = val;
  383. dataList.topId = '';
  384. dataList.secondId = '';
  385. dataList.ordetType=0;
  386. dataList.orderSort=0;
  387. loadDate();
  388. })
  389. }
  390. /* 提示 */
  391. //提示框渐隐函数
  392. function msg(txt) {
  393. if ($('.smg').hasClass('active')) {
  394. return;
  395. }
  396. $('.smg').addClass('active');
  397. var lit = $('#msg').val(txt);
  398. setTimeout(function () {
  399. $('.smg').removeClass('active')
  400. $('#msg').val('');
  401. }, 2000)
  402. }
  403. })