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
36
37
<!doctype html>
<html class="no-js">
<head>
<meta charset="utf-8">
<title>基本信息</title>
 
 
[#include "/business/pages/include/static.html" /]
</head>
 
<body >
<div class="fs_main clearfix">
</div>
<div class="table_basic">
    <div id="main"></div>   
    <div class="paging clearfix" id="pagination"></div>
</div>
 
<script type="text/javascript">
 
var tempId = '${RequestParameters.tempId}';
var flowId = '${RequestParameters.flowId}';
function query() {
    
    var params = {"tempId":tempId,"flowId":flowId};
        pagination("${base}/business/pages/change/viewCiMsgData.html","${base}/business/pages/change/viewCiMsgCount.html","main","pagination",{psize:10},params,function() {
            eventListWith();
        });
}
 
$(function() {
    query();
})
</script>
 
</body>
</html>