| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <title>报时管理</title>
- <script src="../Script/Common/huayi.load.js"></script>
- <script src="../Script/Common/huayi.config.js"></script>
- <style>
- body,
- html,
- .wrapper {
- height: 100%;
- }
- </style>
- </head>
- <body class="gray-bg">
- <div class="wrapper wrapper-content animated fadeInRight">
- <iframe class="time_iframe" width="100%" height="100%" src="https://www.baidu.com/" frameborder="0" data-id="index_v1.html" seamless></iframe>
- </div>
- <script>
- var type = helper.request.queryString("type");
- var userCode=top.$('#userCode').val();
- var iframe_url='';
- switch (type){
- case "BSCL": //报事处理
- iframe_url='http://117.158.24.187:8001/400/?logid='+ userCode
- break;
- case "BSHF_1": //报事一次回访
- iframe_url='http://192.168.128.246/400/return.html?logid='+ userCode
- // iframe_url='http://117.158.24.187:8001/400/return.html?logid=8022'
- break;
- case "BSHF_2": //报事二次回访
- iframe_url='http://192.168.128.246/400/returnVisit.html?logid='+ userCode
- break;
- case "BSCX_N": //报事查询——新
- iframe_url='http://192.168.128.246/400/bill_query.html?logid='+ userCode
- break;
- case "BSCX_O": //报事查询——旧
- // iframe_url='http://192.168.0.78/HM/Callcenter/Call/IncidentSeach.aspx?logid='+ userCode +'&EntrySign='+ userCode +'&CorpID=1000&UserCode=000858&CustID=&Telephone='
- iframe_url='http://117.158.24.187:8001/HM/Callcenter/Call/IncidentSeach.aspx?logid='+ userCode +'&EntrySign='+ userCode +'&CorpID=1000&UserCode=000858&CustID=&Telephone='
- break;
- }
- $('.time_iframe').attr('src', iframe_url)
- </script>
- </body>
- </html>
|