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
| <!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 ci_Id = '${RequestParameters.ci_Id}';
| var flowId = '${RequestParameters.flowId}';
| function query() {
| var params = {"ci_Id":ci_Id,"flowId":flowId};
| pagination("${base}/business/pages/change/viewrelationData.html","${base}/business/pages/change/viewrelationCount.html","main","pagination",{psize:10},params,function() {
| eventListWith();
| });
| }
|
| $(function() {
| query();
| })
| </script>
|
| </body>
| </html>
|
|