商丘12345 前端

index.html 1.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta name="renderer" content="webkit">
  7. <meta http-equiv="Cache-Control" content="no-siteapp" />
  8. <title>商丘政务服务热线后台业务管理系统</title>
  9. <script src="./js/jquery.min.js"></script>
  10. <script src="./js/jquery.cookie.js"></script>
  11. </head>
  12. <body>
  13. <script>
  14. $(function(){
  15. ajax();
  16. })
  17. function ajax(){
  18. $.ajax({
  19. type:"get",
  20. url:"http://k100.800100.net/SysConfig/GetConfig",
  21. async:false,
  22. success:function(res){
  23. var res=$.parseJSON(res)
  24. if(res.state== "success") {
  25. $.cookie("callcenter_url", escape(res.data.callcenter_url));
  26. $.cookie("indextime", res.data.indextime);
  27. $.cookie("menuworktime", res.data.menuworktime);
  28. $.cookie("messageTime", res.data.messageTime);
  29. $.cookie("socket_ip", res.data.socket_ip);
  30. $.cookie("socket_port", res.data.socket_port);
  31. if ($.cookie("token") == null) {
  32. window.location.href = "login.html";
  33. }else{
  34. window.location.href = "home.html";
  35. }
  36. }
  37. }
  38. });
  39. }
  40. </script>
  41. </body>
  42. </html>