鑫苑新版本前端代码

TimeManagement.html 1.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>报时管理</title>
  6. <script src="../Script/Common/huayi.load.js"></script>
  7. <script src="../Script/Common/huayi.config.js"></script>
  8. <style>
  9. body,
  10. html,
  11. .wrapper {
  12. height: 100%;
  13. }
  14. </style>
  15. </head>
  16. <body class="gray-bg">
  17. <div class="wrapper wrapper-content animated fadeInRight">
  18. <iframe class="time_iframe" width="100%" height="100%" src="https://www.baidu.com/" frameborder="0" data-id="index_v1.html" seamless></iframe>
  19. </div>
  20. <script>
  21. var type = helper.request.queryString("type");
  22. var userCode=top.$('#userCode').val();
  23. var iframe_url='';
  24. switch (type){
  25. case "BSCL": //报事处理
  26. iframe_url='http://192.168.128.246/400/'
  27. break;
  28. case "BSHF_1": //报事一次回访
  29. iframe_url='http://192.168.128.246/400/return.html'
  30. break;
  31. case "BSHF_2": //报事二次回访
  32. iframe_url='http://192.168.128.246/400/returnVisit.html'
  33. break;
  34. case "BSCX_N": //报事查询——新
  35. iframe_url='http://192.168.128.246/400/bill_query.html'
  36. break;
  37. case "BSCX_O": //报事查询——旧
  38. iframe_url='http://192.168.0.78/HM/Callcenter/Call/IncidentSeach.aspx?logid='+ userCode +'&EntrySign='+ userCode +'&CorpID=1000&UserCode=000858&CustID=&Telephone='
  39. break;
  40. }
  41. $('.time_iframe').attr('src', iframe_url)
  42. </script>
  43. </body>
  44. </html>