123456789101112131415161718192021222324252627282930313233343536373839 |
- import 'css/bootstrap.less';
- import 'bootstrap/dist/js/bootstrap.js';
- import 'css/newMenu/public.css';
- import 'css/newMenu/header.css'
- import 'css/newMenu/index.css';
- // import 'js/banner.js';
- import 'js/public.js';
- (function(){
- "use strict";
- init();
- function init(){
- banner();
- };
- //轮播
- function banner(){
- $('#myCarousel').carousel({
- interval: 4000
- })
- };
- //搜索框上面栏目的选择
- $(".jumpType li").click(function(){
- $(this).addClass("active");
- $(this).siblings().removeClass("active");
- })
- //搜索功能
- $(".searchBtn").click(function(){
- var seachon=$(".jumpType li.active").index();
- var key=$('.demandSearch').val();
- switch(seachon){
- case 0:window.open(globalConfig.context + `/portal/technologyTrading/achievementList.html?name=${key}`);break;
- case 1:window.open(globalConfig.context + `/portal/technologyTrading/demandList.html?name=${key}`);break;
- case 2:window.open(globalConfig.context + `/portal/service/patentList?name=${key}`);break;
- case 3:window.open(globalConfig.context + `/portal/thinkTank/policyList?name=${key}`);break;
- case 4:window.open(globalConfig.context + `/portal/service/serviceList?name=${key}`);break;
- default :break;
- }
- })
- }())
|