portal html css js resource

cmpFooter.js 2.6KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. //新版footer
  2. var footerHtml = '';
  3. footerHtml += '<div class="container-fulid">'+
  4. '<div class="containerCon">'+
  5. // '<div class="top-block">'+
  6. // '<p class="">合作单位</p>'+
  7. // '</div>'+
  8. '<div class="bottom-block clearfix">'+
  9. '<div class="help-block floatL">' +
  10. '<div class="logo-block"></div>'+
  11. '<p>' +
  12. '<a class="listlink" href="../about.html" target="_blank" rel="nofollow">关于我们</a>' +
  13. '<a class="listlink" href="javascript:void(0);" rel="nofollow" id="cmpSet">企业入驻</a>' +
  14. '<a class="listlink" href="javascript:void(0);" rel="nofollow" id="perso">我是专家</a>' +
  15. '<a class="listlink" href="../privacy.html" target="_blank" rel="nofollow">用户协议</a>' +
  16. '<a class="listlink" href="../download.html" target="_blank" rel="nofollow">产品下载</a>' +
  17. '</p>' +
  18. '<p>' +
  19. '<span class="listlink">客服热线: 010-62343359</span>' +
  20. '<span class="listlink">客服邮箱:<a rel="nofollow" href="mailto:service@ekexiu.com"> service@ekexiu.com</a></span>' +
  21. '</p>' +
  22. '<p>' +
  23. '<span class="listlink">工作时间: 周一至周五 9:00-18:00 </span>' +
  24. '</p>' +
  25. '</div>' +
  26. '<div class="code-block floatR">' +
  27. '<div class="floatL">' +
  28. '<p class="codelist appcode"><span></span></p>' +
  29. '<p>下载移动端app</p>' +
  30. '</div>' +
  31. '<div class="floatL">' +
  32. '<p class="codelist weixincode"><span></span></p>' +
  33. '<p>关注微信公众平台</p>' +
  34. '</div>' +
  35. '</div>' +
  36. '<div class="copy-block clearfix">' +
  37. '<span>Copyright © 2016-2018 北京科袖科技有限公司 | 京ICP备16042588号-1 | </span>' +
  38. '<a class="beianbox" target="_black" rel="nofollow" href="http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=11010802022306">' +
  39. '<em></em> 京公网安备11010802022306号' +
  40. '</a>' +
  41. '</div>' +
  42. '</div>' +
  43. '</div>' +
  44. '</div>';
  45. document.write(footerHtml);
  46. $(function(){
  47. var orgid = $.cookie('orgId');
  48. $("#cmpSet").on("click",function(){
  49. if (orgid && orgid != "null" && orgid != null) {
  50. location.href="cmp-needList.html"
  51. }else{
  52. location.href="cmp-settled-reg.html"
  53. }
  54. })
  55. $("#perso").click(function(){
  56. var userid = $.cookie('userid');
  57. if(userid=="null"||userid==undefined){
  58. location.href="login.html";
  59. }
  60. location.href="../expert-authentication.html";
  61. })
  62. })