123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- // import 'css/bootstrap.less';
- import 'bootstrap/dist/js/bootstrap.js';
- import 'css/newMenu/public.css';
- import 'css/newMenu/header.css'
- import 'css/newMenu/tradingIndex.css';
- import 'js/public.js';
- $(function(){
- navTop();
- banner();
- jump();
- function navTop() {
- $(window).scroll(function(){
- var scrolltop=$(document).scrollTop();
- if(scrolltop>0){
- $('.topNav').addClass('navFix')
- }else{
- $('.topNav').removeClass('navFix');
- }
- });
- }
- function banner(){
- $('#myCarousel').carousel({
- interval: 4000
- })
- };
- //提示框渐隐函数
- function msg(txt) {
- if($('.smg').hasClass('active')){
- return ;
- }
- $('.smg').addClass('active');
- var lit = $('#msg').val(txt);
- setTimeout(function () {
- $('.smg').removeClass('active')
- $('#msg').val('');
- }, 2000)
- }
- //在线评估跳转
- function jump(){
- $('.trandPg span').click(function(){
- let loginTxt=$('.head_login')[0];
- if(loginTxt&&($(loginTxt).text())=='登录'){
- $('.head_login').click();
- window.location.hash='jump';
- return false;
- }else{
- if(window.adminData&&window.adminData.mobile){
- msg('账号不正确,请退出重新登入。')
- return;
- }
- window.location.href= globalConfig.context+'/user/account/index.html#/evaluate';
- }
- })
- $('.hasAchievement,.relAchievement').click(function(){
- let loginTxt=$('.head_login')[0];
- if(loginTxt&&($(loginTxt).text())=='登录'){
- $('.head_login').click();
- window.location.hash='jump';
- return false;
- }else{
- if(window.adminData&&window.adminData.mobile){
- msg('账号不正确,请退出重新登入。')
- return;
- }
- window.location.href= globalConfig.context+'/user/account/index.html#/achievement';
- }
- })
- $('.hasDemand,.relDemand').click(function(){
- let loginTxt=$('.head_login')[0];
- if(loginTxt&&($(loginTxt).text())=='登录'){
- $('.head_login').click();
- window.location.hash='jump';
- return false;
- }else{
- if(window.adminData&&window.adminData.mobile){
- msg('账号不正确,请退出重新登入。')
- return;
- }
- window.location.href= globalConfig.context+'/user/account/index.html#/demand';
- }
- })
- }
- })
|