achievement.js 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418
  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/achievement.css';
  8. import {
  9. provinceList
  10. } from '../../js/NewDicProvinceList';
  11. import {
  12. industryObject,
  13. getIndustryCategory
  14. } from '../DicIndustryList';
  15. $(function(){
  16. var theKeyword, theMode, theFieldA, theFieldB,dataCategory,category,internationalFlag,dateSort,lowerPrice,upperPrice;
  17. theKeyword=localStorage.getItem("keyWord");
  18. var typ=localStorage.getItem("pageType");
  19. localStorage.removeItem("keyWord");
  20. localStorage.removeItem("pageType");
  21. loadDate();
  22. //数据处理
  23. var thePageNo = 1,
  24. thePageLength = 1,
  25. pageSize =10;
  26. var categoryObj = {
  27. "0": "专利",
  28. "1": "软著",
  29. "2": "项目",
  30. "3": "版权",
  31. "4": "工业设计",
  32. "5": "配方",
  33. "6": "非标"
  34. };
  35. var transferModeObj = {
  36. "0": "完全转让",
  37. "1": "许可转让",
  38. "2": "技术入股",
  39. "3": "5年独占许可转让"
  40. };
  41. function loadDate(pageNo) {
  42. $.ajax({
  43. method: "get",
  44. dataType: "json",
  45. url: globalConfig.context + "/portal/search/achievementList",
  46. data: {
  47. pageNo: pageNo || 1,
  48. pageSize: 10,
  49. boutiqueFlag :-1,
  50. keyword: theKeyword,
  51. transferMode: theMode != 999 ? theMode : undefined,
  52. fieldA: theFieldA != 999 ? theFieldA : undefined,
  53. fieldB: theFieldB != 999 ? theFieldB : undefined,
  54. dataCategory:dataCategory != 999 ? dataCategory : undefined,
  55. category:category != 999 ? category : undefined,
  56. dateSort:dateSort,
  57. lowerPrice:lowerPrice,
  58. upperPrice:upperPrice,
  59. internationalFlag:internationalFlag != 999 ? internationalFlag : undefined,
  60. },
  61. success: function (data) {
  62. var theArr = [];
  63. if (data.data && data.data.list) {
  64. for (let i = 0; i < data.data.list.length; i++) {
  65. let thisdata = data.data.list[i];
  66. let isJingpin="";
  67. if(thisdata.boutique==1){
  68. isJingpin="jingpin";
  69. }else{
  70. isJingpin="jingpin1";
  71. }
  72. if(thisdata.technicalPictureUrl==null){
  73. thisdata.technicalPictureUrl=''
  74. }
  75. var imgUrl=thisdata.technicalPictureUrl!=''?globalConfig.avatarHost + '/upload' +thisdata.technicalPictureUrl:globalConfig.avatarHost+ "/upload/default/zhuanliimg_null.png";
  76. var star='';
  77. for(var n=0;n<thisdata.maturity;n++){
  78. star+='<li></li>';
  79. }
  80. var percentage='';
  81. if(thisdata.maturityS=='正在研发'){
  82. percentage=20
  83. }
  84. if(thisdata.maturityS=='已有样品'){
  85. percentage=40
  86. }
  87. if(thisdata.maturityS=='通过小试'){
  88. percentage=60
  89. }
  90. if(thisdata.maturityS=='通过中试'){
  91. percentage=80
  92. }
  93. if(thisdata.maturityS=='可以量产'){
  94. percentage=100
  95. }
  96. theArr.push([
  97. '<li val="'+thisdata.id+'" typ="'+thisdata.ownerType+'" class="list"><span class="'+isJingpin+'"></span><div>'+(thisdata.name?thisdata.name:"未知名称")+'</div>',
  98. '<ol><li>类型:<span>' + (thisdata.category ? categoryObj[thisdata.category] : '') + '</span></li>',
  99. '<li>行业:<span>' + (thisdata.fieldA?getIndustryCategory(thisdata.fieldA, thisdata.fieldB):"未知行业") + '</span></li>',
  100. '<li>交易方式:<span>' + (thisdata.transferMode ? transferModeObj[thisdata.transferMode] : "当面交易") + '</span></li>',
  101. '<li>成熟度:<span>'+(thisdata.maturityS?thisdata.maturityS:"通过小试")+'</span></li>',
  102. '<li val="'+thisdata.id+'" typ="'+thisdata.ownerType+'">技术方:<span>'+(thisdata.ownerName?thisdata.ownerName:"佚名")+'</span>',
  103. // '<div class="progressBar">',
  104. // '<p class="bjtxt"></p>',
  105. // '<span class="percentagePic" style="width:'+percentage+'px"></span>',
  106. // '<span class="percentage">'+percentage+'%</span>',
  107. // '<p class="txt"></p>',
  108. // '</div>',
  109. '</li>',
  110. '<li class="consultation"><a href="javascript:;">我要咨询</a></li>',
  111. '</ol>',
  112. '<input type="hidden" class="achievementId" value="' + thisdata.id + '">',
  113. '<input type="hidden" class="achievementType" value="' + thisdata.dataCategory + '">',
  114. '</li>' ,
  115. ].join(''));
  116. };
  117. };
  118. $('.achievementList ul').empty();
  119. $('.achievementList ul').append(theArr.join(''));
  120. //页面里面的详情链接
  121. $(".achievementList ul li .consultation").siblings().on('click', function () {
  122. var theId = $(this).parents('.list').attr('val');
  123. var thetype=$(this).parents('.list').attr('typ');
  124. window.open(globalConfig.context + '/portal/technologyTrading/achievementDetail?id=' + theId+'&type='+thetype );
  125. });
  126. $(".achievementList ul li div").on("click",function(){
  127. $(this).siblings("ol").children("li:first").click();
  128. });
  129. $(".achievementList ul li ol .consultation").click(function(){
  130. $('.ret_top li:nth-child(4) a').click()
  131. })
  132. if(data.data.list.length===0){
  133. $('.achievementList ul').html("<div class='list_none'></div>") ;
  134. };
  135. thePageLength = data.data.totalCount ? Math.ceil(data.data.totalCount / pageSize) : 1;
  136. var pageArr = [],
  137. firstNo = 1,
  138. endNo = 5;
  139. if (thePageNo > 3) {
  140. firstNo = thePageNo - 2;
  141. endNo = Math.min((Number(thePageNo) + 2), thePageLength);
  142. } else {
  143. endNo = Math.min(thePageLength, 5);
  144. };
  145. for (let i = firstNo; i <= endNo; i++) {
  146. if (i == thePageNo) {
  147. pageArr.push(
  148. '<li class="pageNumber active"><a href="#" value=' + i + ' >' + i + '</a></li>'
  149. );
  150. } else {
  151. pageArr.push(
  152. '<li class="pageNumber"><a href="#" value=' + i + ' >' + i + '</a></li>'
  153. );
  154. }
  155. };
  156. $('.pageNumber').remove();
  157. $('.pagePre').after(pageArr.join(''));
  158. }
  159. });
  160. }
  161. if (window.location.search) {
  162. let theUrl = window.location.search
  163. theKeyword = theUrl.substring(1, theUrl.length);
  164. theKeyword = decodeURIComponent(theKeyword);
  165. $('#search_on input').val(theKeyword);
  166. };
  167. var industryListArr = [],
  168. industryChildrenArr = [];
  169. industryListArr.push(['<li value="999" class="active">',
  170. '<span>',
  171. '不限',
  172. '</span>',
  173. '</li>',
  174. ].join(''));
  175. industryObject.map(function (item) {
  176. industryListArr.push(['<li value="' + item.value + '">',
  177. '<span>',
  178. item.label,
  179. '</span>',
  180. '</li>',
  181. ].join(''));
  182. });
  183. if (industryListArr && industryListArr.length) {
  184. $('#industryList').append(industryListArr.join(''));
  185. };
  186. $('#industryList li').click(function () {
  187. var theValue = this.value;
  188. $(this).siblings("li").removeClass("active");
  189. $(this).addClass("active");
  190. industryChildrenArr = [];
  191. industryChildrenArr.push(['<li value="999" class="active">',
  192. '<span>',
  193. '不限',
  194. '</span>',
  195. '</li>',
  196. ].join(''));
  197. if (theValue !== 999) {
  198. $('#industryChildrenBox').css("display", "block");
  199. industryObject.map(function (item) {
  200. if (item.value == theValue) {
  201. item.children.map(function (child) {
  202. industryChildrenArr.push(['<li value="' + child.value + '">',
  203. '<span>',
  204. child.label,
  205. '</span>',
  206. '</li>',
  207. ].join(''));
  208. });
  209. };
  210. });
  211. } else {
  212. $('#industryChildrenBox').css("display", "none");
  213. };
  214. if (industryChildrenArr && industryChildrenArr.length) {
  215. $('#industryChildrenList').empty();
  216. $('#industryChildrenList').append(industryChildrenArr.join(''));
  217. };
  218. theFieldA = this.value;
  219. theFieldB = '999';
  220. loadDate();
  221. });
  222. $('#industryChildrenList').on('click', 'li', function () {
  223. $(this).siblings("li").removeClass("active");
  224. $(this).addClass("active");
  225. theFieldB = this.value;
  226. loadDate();
  227. });
  228. $('#transferModeList').on('click', 'li', function () {
  229. $(this).siblings("li").removeClass("active");
  230. $(this).addClass("active");
  231. theMode = this.value;
  232. loadDate();
  233. });
  234. $('#btn_search').click(function () {
  235. theKeyword = $('#search_on input').val();
  236. loadDate();
  237. });
  238. $('.pagination').on('click', 'li', function (e) {
  239. e.preventDefault();
  240. if (this.className === 'pagePre') {
  241. if (thePageNo > 1) {
  242. thePageNo = 1;
  243. loadDate(thePageNo);
  244. }
  245. } else if (this.className === 'pageNext') {
  246. if (thePageNo < thePageLength) {
  247. thePageNo = thePageLength;
  248. loadDate(thePageNo);
  249. }
  250. } else {
  251. var nextPageNo = $(this).children()[0].text;
  252. if (thePageNo != nextPageNo) {
  253. $(this).siblings("li").removeClass("active");
  254. $(this).addClass("active");
  255. thePageNo = nextPageNo;
  256. loadDate(thePageNo);
  257. };
  258. };
  259. });
  260. $('#industryList li').click(function(){
  261. $('.achievement_header ul li').eq(0).show();
  262. var text_ind=$(this).find('span').text();
  263. $('.achievement_header ul li').eq(0).find('p').text(text_ind);
  264. })
  265. //点击搜索下面的字段快捷搜索
  266. $('.head_right ol li').click(function () {
  267. theKeyword=$(this).text();
  268. console.log(theFieldA)
  269. $('#technologyModeList li').eq(0).addClass('active').siblings().removeClass('active');
  270. $('#transferModeList li').eq(0).addClass('active').siblings().removeClass('active');
  271. $('.text_replace').show();
  272. $('.text_replace span').text(theKeyword);
  273. $('#search_on input').val(theKeyword);
  274. loadDate();
  275. });
  276. //技术类型单选
  277. $('#patent').prop('checked',false);
  278. $('#selectAct li:first-child').click(function(){
  279. $(this).addClass('active');
  280. $('#patent').prop('checked',false);
  281. $('#demand').prop('checked',false);
  282. $('#demand,#patent').parent().addClass('demand').removeClass('patent');
  283. category=null;
  284. dataCategory=null;
  285. loadDate();
  286. })
  287. $('#patent').click(function(){
  288. $('#selectAct li').eq(0).removeClass('active')
  289. $(this).prop('checked',true);
  290. $(this).parent().addClass('patent').removeClass('demand');
  291. $('#demand').attr('checked',false);
  292. $('#demand').parent().addClass('demand').removeClass('patent')
  293. category=null;
  294. dataCategory=1;
  295. loadDate();
  296. })
  297. $('#demand').click(function(){
  298. $('#selectAct li').eq(0).removeClass('active')
  299. $(this).prop('checked',true);
  300. $(this).parent().addClass('patent').removeClass('demand');
  301. $('#patent').attr('checked',false);
  302. $('#patent').parent().addClass('demand').removeClass('patent')
  303. category=0;
  304. dataCategory=null;
  305. loadDate();
  306. })
  307. //是否国际单选
  308. $('#isInt').prop('checked',false);
  309. $('#selectInt li:first-child').click(function(){
  310. $(this).addClass('active');
  311. $('#isInt').prop('checked',false);
  312. $('#noInt').prop('checked',false);
  313. $('#noInt,#isInt').parent().addClass('demand').removeClass('patent');
  314. category=null;
  315. dataCategory=null;
  316. internationalFlag=null;
  317. loadDate();
  318. })
  319. $('#isInt').click(function(){
  320. $('#selectInt li').eq(0).removeClass('active')
  321. $(this).prop('checked',true);
  322. $(this).parent().addClass('patent').removeClass('demand');
  323. $('#noInt').attr('checked',false);
  324. $('#noInt').parent().addClass('demand').removeClass('patent');
  325. internationalFlag=1;
  326. loadDate();
  327. })
  328. $('#noInt').click(function(){
  329. $('#selectInt li').eq(0).removeClass('active')
  330. $(this).prop('checked',true);
  331. $(this).parent().addClass('patent').removeClass('demand');
  332. $('#isInt').attr('checked',false);
  333. $('#isInt').parent().addClass('demand').removeClass('patent');
  334. internationalFlag=0;
  335. loadDate();
  336. })
  337. //排序下拉选择
  338. $('.head-left ul li p').click(function(){
  339. $(this).siblings().slideToggle(300);
  340. })
  341. $('.head-left ul li').mouseleave(function(){
  342. $(this).find('.time_select').slideUp(300);
  343. })
  344. $('.time_select ul li').click(function(){
  345. var txt=$(this).text();
  346. $(this).parents('.time_select').siblings('p').find('span').text(txt);
  347. $('.time_select').hide();
  348. });
  349. $('.timeSelect li').click(function(){
  350. var timeTxt=$(this).attr('value');
  351. dateSort=timeTxt;
  352. loadDate();
  353. })
  354. //价格
  355. $('.inp_select input').keyup(function(){
  356. var val_min=$(this).val();
  357. if(val_min<0){
  358. $(this).val('0')
  359. }
  360. })
  361. $('.inp_select button').click(function(){
  362. var minpri=$('.inp_select #minprice').val();
  363. var maxpri=$('.inp_select #maxprice').val();
  364. lowerPrice =minpri;
  365. upperPrice =maxpri;
  366. loadDate();
  367. })
  368. $('#industryList li:first-child').click(function(){
  369. theFieldA = $(this).attr('value');
  370. theFieldB = '999';
  371. loadDate();
  372. })
  373. //搜索城市下拉
  374. var addlength=provinceList.length;
  375. var soption='';
  376. for(var i=0;i<addlength;i++){
  377. soption+="<option value='"+provinceList[i].id+"'>"+provinceList[i].name+"</option>";
  378. };
  379. $('#selt').html(soption);
  380. //全部结果查询
  381. $('.achievement_header ul li img').click(function(){
  382. $(this).parent().hide();
  383. var lilen=$('.achievement_header ul li').css('display');
  384. if(lilen=='none'){
  385. $('#search_on input').val('');
  386. $('.searchs button').click();
  387. }
  388. });
  389. $('.text_replace').hide()
  390. // 搜索功能关联关键字
  391. $('.searchs button').click(function(e){
  392. e.preventDefault();
  393. var search_txt=$('#search_on input').val();
  394. $('.text_replace span').text(search_txt);
  395. if(search_txt==''){
  396. $('.text_replace').hide()
  397. }else{
  398. $('.text_replace').show()
  399. }
  400. });
  401. //点击行业分类
  402. $('#transferModeList li').click(function(){
  403. $('.achievement_header ul li').eq(1).show();
  404. $(this).addClass('active').siblings().removeClass('active');
  405. var txt_tech=$(this).find('span').text();
  406. $('.achievement_header ul li').eq(1).find('p').text(txt_tech);
  407. });
  408. });