cy
2022-06-23 da30b02214ab3a35a3b2ac163afce87e70a39ff4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!doctype html>
<html class="no-js">
<head>
<meta charset="utf-8">
<title>处理记录</title>
</head>
 
<body>
[#include "/business/pages/include/static.html" /]
 
<div class="deal_switch_con" style="display:block;">
    <div id="main"></div>
</div>
 
 
 
<script type="text/javascript">
    var orderId = '${orderId}';
    //查询问题处理
    function queryRecord() {
        $.post("${base}/business/pages/releaseManage/dealRecordDataView.html",{"orderId":orderId},function(data,textStatus) {
            if(data=='${SysConstants.Ajax_login_Time_Out_Key}') {
                window.location.href="${base}/business/login.html";
            } else {
                $("#main").html(data);
            }
            eventIframe();
        })
    }
 
    $(function() {
        queryRecord();
    })
</script>
 
</body>
</html>