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
38
39
40
| <!doctype html>
| <html class="no-js">
| <head>
| <meta charset="utf-8">
| [#include "/business/pages/include/static.html" /]
| <title>ÅäÖùØÏµ</title>
| </head>
|
| <body>
| <div class="table_basic">
| <div id="main"></div>
| <div class="paging clearfix" id="pagination"></div>
|
|
| </div>
| <script type="text/javascript">
| var ciId = '${ciId}';
| var flowId = '${flowId}';
| function query(){
|
| var params = {"flowId":flowId,"ciId":ciId};
| pagination("${base}/business/pages/change/viewRelationInfoData.html","${base}/business/pages/change/viewRelationInfoCount.html","main","pagination",{psize:10},params,function() {
| eventListWith();
| });
| }
|
| $(function(){
|
| query();
|
| });
|
|
|
|
|
|
| </script>
| </body>
| </html>
|
|