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
[#include "/component/excExport.html" /]
[#if report??]
<script type="text/javascript">
 
</script>
    
 
<div class="check_btn clearfix" style="margin-right: 27px;">
    [@excExp id="reportDiv" name="工程师统计" /]
    <a class="common print" href="javascript:printA4(1,'reportDiv');"><span>打印</span></a>
</div>
<div id="reportDiv">
    <table border="0" class="reportTable tablew" id="reportTable">
        <tr class="titleTr">
            <td colspan="7">工程师统计</td>
        </tr>
        <tr class="nameTr">
            <td colspan="2" align="left" valign="bottom" style="padding:1px;"></td>
            <td colspan="3">&nbsp;</td>
            <td colspan="2" style="text-align:right;">统计日期:${DateUtil.format("yyyy/MM/dd",RequestParameters.beginTime)}-${DateUtil.format("yyyy/MM/dd",RequestParameters.endTime)}</td>
        </tr>
 
        <tr>
            <td width="20%" class="tdbg">名称</td>
            <td width="12%" class="tdbg">创建</td>
            <td width="12%" class="tdbg">被顶</td>
            <td width="12%" class="tdbg">被踩</td>
            <td width="12%" class="tdbg">置顶</td>
            <td width="12%" class="tdbg">精华</td>
            <td width="12%" class="tdbg">编辑</td>
        </tr>
        
        [#if report??&&report?size>0]
            [#list report as data]
                <tr>
                    <td>${data.ZSXM}</td>
                    <td>${data.createnum}</td>
                    <td>${data.zannum}</td>
                    <td>${data.cainum}</td>
                    <td>${data.topnum}</td>
                    <td>${data.jhnum}</td>
                    <td>${data.editnum}</td>
                </tr>
            [/#list]
        [#else]
            <tr>
                <td colspan="7">暂无数据</td>
            </tr>
        [/#if]
 
    </table>
 
[/#if]
<div id="reportDiv">