鑫苑新版本前端代码

TimeManagement.html 1.7KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. break;
  42. }
  43. $('.time_iframe').attr('src', iframe_url)
  44. </script>
  45. </body>
  46. </html>