鑫苑新版本前端代码

TimeManagement.html 1.8KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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://117.158.24.187:8001/400/?logid='+ userCode
  27. break;
  28. case "BSHF_1": //报事一次回访
  29. iframe_url='http://192.168.128.246/400/return.html?logid='+ userCode
  30. // iframe_url='http://117.158.24.187:8001/400/return.html?logid=8022'
  31. break;
  32. case "BSHF_2": //报事二次回访
  33. iframe_url='http://192.168.128.246/400/returnVisit.html?logid='+ userCode
  34. break;
  35. case "BSCX_N": //报事查询——新
  36. iframe_url='http://192.168.128.246/400/bill_query.html?logid='+ userCode
  37. break;
  38. case "BSCX_O": //报事查询——旧
  39. // iframe_url='http://192.168.0.78/HM/Callcenter/Call/IncidentSeach.aspx?logid='+ userCode +'&EntrySign='+ userCode +'&CorpID=1000&UserCode=000858&CustID=&Telephone='
  40. //iframe_url='http://117.158.24.187:8001/HM/Callcenter/Call/IncidentSeach.aspx?logid='+ userCode +'&EntrySign='+ userCode +'&CorpID=1000&UserCode=000858&CustID=&Telephone='
  41. iframe_url = 'http://192.168.4.18:4602/callout/callOut.html';
  42. break;
  43. }
  44. $('.time_iframe').attr('src', iframe_url)
  45. </script>
  46. </body>
  47. </html>