index.js 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. import 'css/bootstrap.less';
  2. import 'bootstrap/dist/js/bootstrap.js';
  3. import 'css/newMenu/public.css';
  4. import 'css/newMenu/header.css'
  5. import 'css/newMenu/index.css';
  6. // import 'js/banner.js';
  7. import 'js/public.js';
  8. (function(){
  9. "use strict";
  10. init();
  11. function init(){
  12. banner();
  13. };
  14. //轮播
  15. function banner(){
  16. $('#myCarousel').carousel({
  17. interval: 4000
  18. })
  19. };
  20. //搜索框上面栏目的选择
  21. $(".jumpType li").click(function(){
  22. $(this).addClass("active");
  23. $(this).siblings().removeClass("active");
  24. })
  25. //搜索功能
  26. $(".searchBtn").click(function(){
  27. var seachon=$(".jumpType li.active").index();
  28. var key=$('.demandSearch').val();
  29. switch(seachon){
  30. case 0:window.open(globalConfig.context + `/portal/technologyTrading/achievementList.html?name=${key}`);break;
  31. case 1:window.open(globalConfig.context + `/portal/technologyTrading/demandList.html?name=${key}`);break;
  32. case 2:window.open(globalConfig.context + `/portal/service/patentList?name=${key}`);break;
  33. case 3:window.open(globalConfig.context + `/portal/thinkTank/policyList?name=${key}`);break;
  34. case 4:window.open(globalConfig.context + `/portal/service/serviceList?name=${key}`);break;
  35. default :break;
  36. }
  37. })
  38. }())