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
38
39
40
41
42
43
44
<!doctype html>
<html>
<head>
[#include "/business/wechat/include/title.html" /]
[#include "/business/wechat/include/wheader.html" /]
</head>
 
<body>
<header class="kltit tcenter"><a href="javascript:history.go(-1);"><span></span></a>[#if filename??]${filename}[#else]文档[/#if]</header>
<div class="pb22">
[#if RequestParameters.pId??]
[#else]
<div class="fileBg"></div>
[/#if]
<section class="wlfile clearfix" id="main">
    
</section>
<div id="pagination" class="loadmore"></div>
</div>
 
<script type="text/javascript">
var pId = '${RequestParameters.pId}';
function query() {
   var param = {"pId":pId};
    $("#main").empty();
     $("#pagination").pagination({
    durl:"${base}/ewyw/ewKnowledge/ewKnowFileData.html",
    curl:"${base}/ewyw/ewKnowledge/ewKnowFileCount.html",
    pdiv:"pagination",
    mdiv:"main",
    perPage : 5,
    param:param
    });
}
        
  $(function() {
      query();
  })
</script>
 
[#assign label = "file"]
[#include "/business/wechat/include/knowfooter.html"]
</body>
</html>