serviceList.js 18 KB

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