patentList.js 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408
  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) {
  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. let times = new Date().getTime();
  198. if (data.data && data.data.list.length) {
  199. let nub = data.data.list.length;
  200. for (let i = 0; i < nub; i++) {
  201. let thisdata = data.data.list[i];
  202. theArrs.push(`
  203. <li dataId="${thisdata.id}">
  204. <div class="img serviceImg">
  205. ${thisdata.maxImgUrl&&thisdata.maxImgUrl!=null?'<img src="'+globalConfig.avatarHost+'/upload'+thisdata.maxImgUrl+'"/>':''}
  206. </div>
  207. <div class="txtIntroduce">
  208. <div class="txts">
  209. <h5>${thisdata.name}</h5>
  210. </div>
  211. <div class="btnTxt">
  212. <p>
  213. <span class="companyImg"></span>
  214. <a href="javascript:(0)" class="companyName">${thisdata.companyName}</a>
  215. <span class="number">销量 : ${thisdata.dealCount?thisdata.dealCount:0}</span>
  216. </p>
  217. </div>
  218. </div>
  219. </li>
  220. `);
  221. };
  222. };
  223. $('.loading').hide().stop(true, true);
  224. $('.achievementHot .hotList').empty();
  225. $('.achievementHot .hotList').append(theArrs.join(''));
  226. $('.pagination_box').css('display', 'block');
  227. $('.inp').css('display', 'block');
  228. if (data.data.list.length === 0) {
  229. $('.achievementHot .hotList').html("<div class='list_none'></div>");
  230. $('.pagination_box').css('display', 'none');
  231. $('.inp').css('display', 'none');
  232. };
  233. thePageLength = data.data.totalCount ? Math.ceil(data.data.totalCount / pageSize) : 1;
  234. $('.totalCount').html(`共${data.data.totalCount}条数据 ${thePageLength}页`)
  235. var pageArr = [],
  236. firstNo = 1,
  237. thePageNo=pageNo||1,
  238. endNo = 5;
  239. if (thePageNo > 3) {
  240. firstNo = thePageNo - 2;
  241. endNo = Math.min((Number(thePageNo) + 2), thePageLength);
  242. } else {
  243. endNo = Math.min(thePageLength, 5);
  244. };
  245. for (let i = firstNo; i <= endNo; i++) {
  246. if (i == thePageNo) {
  247. pageArr.push(
  248. '<li class="pageNumber active"><a href="#" value=' + i + ' >' + i + '</a></li>'
  249. );
  250. } else {
  251. pageArr.push(
  252. '<li class="pageNumber"><a href="#" value=' + i + ' >' + i + '</a></li>'
  253. );
  254. }
  255. };
  256. $('.pageNumber').remove();
  257. $('.pagePre').after(pageArr.join(''));
  258. urlDetaile();
  259. }
  260. });
  261. }
  262. //详情跳转
  263. function urlDetaile(){
  264. $('.hotList>li').click(function(){
  265. let ids = $(this).attr('dataId');
  266. window.location.href=globalConfig.context+'/portal/service/patentDetail?id='+ids;
  267. })
  268. };
  269. //时间转换
  270. function formatDuring(mss) {
  271. var days = parseInt(mss / (1000 * 60 * 60 * 24));
  272. var hours = parseInt((mss % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
  273. var minutes = parseInt((mss % (1000 * 60 * 60)) / (1000 * 60));
  274. var seconds = (mss % (1000 * 60)) / 1000;
  275. return days;
  276. }
  277. //f分页
  278. function pages() {
  279. $('.pagination').on('click', 'li', function (e) {
  280. e.preventDefault();
  281. if (this.className === 'pagePre') {
  282. if (thePageNo > 1) {
  283. thePageNo = 1;
  284. loadDate(thePageNo);
  285. }
  286. } else if (this.className === 'pageNext') {
  287. if (thePageNo < thePageLength) {
  288. thePageNo = thePageLength;
  289. loadDate(thePageNo);
  290. }
  291. } else {
  292. var nextPageNo = $(this).children()[0].text;
  293. if (thePageNo != nextPageNo) {
  294. $(this).siblings("li").removeClass("active");
  295. $(this).addClass("active");
  296. thePageNo = nextPageNo;
  297. loadDate(thePageNo);
  298. };
  299. };
  300. });
  301. }
  302. //输入跳转
  303. function inpFun() {
  304. $('.inp button').on('click', function () {
  305. let val = $(this).siblings().val();
  306. if (!isNaN(val) && val <= thePageLength && val > 0&&val%1=='0') {
  307. thePageNo = val;
  308. loadDate(thePageNo);
  309. } else {
  310. msg('请输入正确页码')
  311. }
  312. })
  313. }
  314. //已选类型
  315. function onSelect(data) {
  316. $('.industryList ul li').on('click', function () {
  317. $('.industryList ul li').removeClass('active')
  318. $(this).addClass('active');
  319. dataList.secondId = $(this).attr('data-id');
  320. dataList.topId = $(this).parents('.industry').attr('data');
  321. dataList.name = '';
  322. let txt = $(this).text();
  323. $('.onSelect .preFirst').css('display', 'block').html(`
  324. <span>${txt}</span>
  325. `)
  326. loadDate();
  327. });
  328. //更多
  329. $('.industryList .more').click(function () {
  330. let index = $(this).parents('.industry').index();
  331. heigFun(index);
  332. })
  333. }
  334. function heigFun(index){
  335. let ulH = $('.serviceList .industry').eq(index).find('.industryList ').height();
  336. if ($('.industry').eq(index).hasClass('activeH')) {
  337. $('.industry').eq(index).removeClass('activeH');
  338. $('.industry').eq(index).height(52);
  339. $('.industry').eq(index).find('.more').text('更多+')
  340. $('.industry').eq(index).find('p').css({'height':'52px','line-height':'52px'})
  341. }else{
  342. $('.industry').eq(index).find('.more').text('收起')
  343. $('.industry').eq(index).addClass('activeH');
  344. $('.industry').eq(index).height(ulH);
  345. $('.industry').eq(index).find('p').css({'height':ulH+'px','line-height':ulH+'px'})
  346. }
  347. }
  348. //搜索
  349. function search() {
  350. $('.hot ul li span').click(function(){
  351. $(this).parents('ul').find('.sort span').removeClass('active');
  352. $(this).addClass('active');
  353. })
  354. $('.hot ul li:eq(0) span').click(function (e) {
  355. if((e.target.className).indexOf('up')>-1){
  356. dataList.ordetType=2;
  357. dataList.orderSort=1;
  358. }else{
  359. dataList.ordetType=2;
  360. dataList.orderSort=0
  361. }
  362. loadDate();
  363. });
  364. $('.hot ul li:eq(1) span').click(function (e) {
  365. if((e.target.className).indexOf('up')>-1){
  366. dataList.ordetType=1;
  367. dataList.orderSort=1;
  368. }else{
  369. dataList.ordetType=1;
  370. dataList.orderSort=0
  371. }
  372. loadDate();
  373. });
  374. $('.searchBtn').click(function () {
  375. let val = $('.demandSearch').val();
  376. $('.industry ul li').removeClass('active');
  377. $('.hot ul li .sort span').removeClass('active')
  378. $('.preFirst').hide();
  379. dataList.name = val;
  380. dataList.topId = '';
  381. dataList.secondId = '';
  382. dataList.ordetType=0;
  383. dataList.orderSort=0;
  384. loadDate();
  385. })
  386. }
  387. /* 提示 */
  388. //提示框渐隐函数
  389. function msg(txt) {
  390. if ($('.smg').hasClass('active')) {
  391. return;
  392. }
  393. $('.smg').addClass('active');
  394. var lit = $('#msg').val(txt);
  395. setTimeout(function () {
  396. $('.smg').removeClass('active')
  397. $('#msg').val('');
  398. }, 2000)
  399. }
  400. })