cy
2022-06-21 129904537f66509f97b285e7eb4f42b3dc349dd0
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
<!doctype html>
<html class="no-js">
<head>
<meta charset="utf-8">
<title>¹ÒÆðÀúÊ·¼Ç¼</title>
<!--(start) public flies-->
 
</head>
[#include "/business/pages/include/static.html" /]
<body class="search_list_body">
<div class="search_list">
    <table class="display_form" id="main">
        
    </table>
</div>
 
<script type="text/javascript">
    function query() {
        var orderId = '${RequestParameters.orderId}';
        
        $.post("${base}/business/pages/question/gqhistoryData.html",{"orderId":orderId},function(data,textStatus) {
            if(data=='${SysConstants.Ajax_login_Time_Out_Key}') {
                window.location.href="${base}/business/login.html";
            }
            $("#main").html(data);
        })
        
    }
    
    $(function() {
        query();
    })
</script>
</body>
</html>