tradingIndex.js 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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/tradingIndex.css';
  6. import 'js/public.js';
  7. $(function(){
  8. navTop();
  9. banner();
  10. jump();
  11. function navTop() {
  12. $(window).scroll(function(){
  13. var scrolltop=$(document).scrollTop();
  14. if(scrolltop>0){
  15. $('.topNav').addClass('navFix')
  16. }else{
  17. $('.topNav').removeClass('navFix');
  18. }
  19. });
  20. }
  21. function banner(){
  22. $('#myCarousel').carousel({
  23. interval: 4000
  24. })
  25. };
  26. //提示框渐隐函数
  27. function msg(txt) {
  28. if($('.smg').hasClass('active')){
  29. return ;
  30. }
  31. $('.smg').addClass('active');
  32. var lit = $('#msg').val(txt);
  33. setTimeout(function () {
  34. $('.smg').removeClass('active')
  35. $('#msg').val('');
  36. }, 2000)
  37. }
  38. //在线评估跳转
  39. function jump(){
  40. $('.trandPg span').click(function(){
  41. let loginTxt=$('.head_login')[0];
  42. if(loginTxt&&($(loginTxt).text())=='登录'){
  43. $('.head_login').click();
  44. window.location.hash='jump';
  45. return false;
  46. }else{
  47. if(window.adminData&&window.adminData.mobile){
  48. msg('账号不正确,请退出重新登入。')
  49. return;
  50. }
  51. window.location.href= globalConfig.context+'/user/account/index.html#/evaluate';
  52. }
  53. })
  54. $('.hasAchievement,.relAchievement').click(function(){
  55. let loginTxt=$('.head_login')[0];
  56. if(loginTxt&&($(loginTxt).text())=='登录'){
  57. $('.head_login').click();
  58. window.location.hash='jump';
  59. return false;
  60. }else{
  61. if(window.adminData&&window.adminData.mobile){
  62. msg('账号不正确,请退出重新登入。')
  63. return;
  64. }
  65. window.location.href= globalConfig.context+'/user/account/index.html#/achievement';
  66. }
  67. })
  68. $('.hasDemand,.relDemand').click(function(){
  69. let loginTxt=$('.head_login')[0];
  70. if(loginTxt&&($(loginTxt).text())=='登录'){
  71. $('.head_login').click();
  72. window.location.hash='jump';
  73. return false;
  74. }else{
  75. if(window.adminData&&window.adminData.mobile){
  76. msg('账号不正确,请退出重新登入。')
  77. return;
  78. }
  79. window.location.href= globalConfig.context+'/user/account/index.html#/demand';
  80. }
  81. })
  82. }
  83. })