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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!doctype html>
<html>
<head>
[#include "/business/wechat/include/title.html" /]
[#include "/business/wechat/include/wheader.html" /]
<script type="text/javascript" src="${common_static}/static/wechat/style/js/jquery.nicescroll.js"></script>
</head>
 
<body>
<header class="kltit"><label class="check taskoption"></label><a href="${base}/uwyw/stats/uKnowStats/knowStatsIndex.html" ><span></span></a>知识统计</header>
  <script>
  $(document).ready(function() {
    var nicesx = $("#boxscroll").niceScroll("#boxscroll div",{touchbehavior:true,cursorcolor:"#FF00FF",cursoropacitymax:0.6,cursorwidth:24,usetransition:true,hwacceleration:true,autohidemode:"hidden"});
  });
</script>
<div class="statistics-title">数量统计</div>
<div class="client-name"><span></span><p>统计日期:${year}年</p></div>
<div class="searchCon">
    <table class="tableName">
        <tbody><tr>
            <th>序号</th>
        </tr>
        <tr>
            <td>1</td>
        </tr>
        <tr>
            <td>2</td>
        </tr>
        <tr>
            <td>3</td>
        </tr>
    </tbody></table>
    <div id="boxscroll">
      <div>
      <table class="tableName">
        <tbody>
        <tr>
            <th style="width:150px;">分类</th>
            <th >全年</th>
            <th >上半年</th>
            <th >下半年</th>
            <th >第一季度</th>
            <th >第二季度</th>
            <th >第三季度</th>
            <th >第四季度</th>
        </tr>
        
        <!-- 数据栏 -->
            <tr>
                <td>知识分类</td>
                <td>${catereport.allnum}</td>
                <td>${catereport.sbnnum}</td>
                <td>${catereport.xbnnum}</td>
                <td>${catereport.yjdnum}</td>
                <td>${catereport.ejdnum}</td>
                <td>${catereport.sjdnum}</td>
                <td>${catereport.sijdnum}</td>
            </tr>
            <tr>
                    <td>配置分类</td>
                    <td>${cireport.allnum}</td>
                    <td>${cireport.sbnnum}</td>
                    <td>${cireport.xbnnum}</td>
                    <td>${cireport.yjdnum}</td>
                    <td>${cireport.ejdnum}</td>
                    <td>${cireport.sjdnum}</td>
                    <td>${cireport.sijdnum}</td>
                </tr>
                <tr>
                    <td>服务目录</td>
                    <td>${servicereport.allnum}</td>
                    <td>${servicereport.sbnnum}</td>
                    <td>${servicereport.xbnnum}</td>
                    <td>${servicereport.yjdnum}</td>
                    <td>${servicereport.ejdnum}</td>
                    <td>${servicereport.sjdnum}</td>
                    <td>${servicereport.sijdnum}</td>
                </tr>    
    </tbody></table>
     </div>
    </div>
</div>
<script type="text/javascript">
n=$('.kltwowrap a').size();                
var wh=100*n+"%";
$('.kltwowrap').width(wh);
var lt=(100/n/4);
var lt_li=lt+"%";
$('.kltwowrap a').width(lt_li);            
$(".kltwowrap a").on('touchstart mousedown',function(e){
    e.preventDefault()
    $(".kltwowrap .active").removeClass('active');
    $(this).addClass('active');
    tabsSwiper.slideTo($(this).index());
});
 
$(".kltwowrap a").click(function(e){
    e.preventDefault();
});
 
var tabsSwiper = new Swiper(".swiper-container",{
    setWrapperSize :true,
    onSlideChangeStart: function(sw){
        $(".kltwowrap .active").removeClass('active');
        $(".kltwowrap a").eq(tabsSwiper.activeIndex).addClass('active');
        
    //sw.width
    var currTab = $(".kltwowrap a").eq(tabsSwiper.activeIndex);
    currTab.parent().css("left",-parseInt(sw.activeIndex/4)*sw.width);
    }
});
 
$(function(){
    $('.check').click(function(){
        window.location.href='${base}/uwyw/stats/uKnowStats/knowSearchReportIndex.html?statsType=${RequestParameters.statsType}';
    });
})
</script>      
</body>
</html>