liuxiaolong
2019-05-09 0d1d88cdb668e75ea8609417ac18ae19947e9525
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>导出文件</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style>
.allContent {
    width: 700px;
    background: #FFF;
    margin: 0;
    padding: 0;
}
 table{
    table-layout:fixed;
}
td{
    word-wrap: break-word;
    word-break: break-all;
    font-size:12px;
    }
 
.titleTable {
    width: 700px;
    margin: 0px 20px 20px 0px;
}
 
 
.titles {
    font-size: 18px;
    font-weight: bold;
    height: 40px;
}
 
.divTable {
    display: block;
}
 
.titleTable tr td {
    height: 30px;
 
}
 
.divTable table {
    margin: 0px 20px 0px 20px;
    border: solid 1px #B4B4B4;
    border-collapse: collapse;
    width: 680px;
}
 
.divTable tr th {
    height: 27px;
    border: solid 1px #B4B4B4;
    font-weight:800;
}
 
.divTable tr td {
    height: 38px;
    padding-top: 4px;
    padding-bottom: 4px;
    border: solid 1px #B4B4B4;
}
 
.titleTable2 {
    width: 650px;
    margin: 20px;
}
.timeTitleClass {
    margin: 20px 0px 0px 50px;
    width:650px;
}
.timeTitleClass td{
}
 
.shijian{
width:180px;
    }
.caoZuoRen {
   width:120px;
}
.caoZuo {
   width:150px;
}
.yiJian {
   width:150px;
}
.td_width25{
    width:150px;
}
.td_width50{
    width:300px;
}
 
</style>
</head>
 
 
<body>
    <div class=" allContent " id="dai-submit">
 
 
        <div class="" id="">
            <table class="titleTable" cellspacing='1' cellpadding='3px'>
                <tr>
                    <td class="titles" align='center' colspan="4">
                        <h3>${title}</h3></td>
                </tr>
                <tr>
                    <td class='td_width25'>开始日期:${beginDate}</td>
                    <td class='td_width25'>结束日期:${endDate}</td>
                    <td class='td_width50'>执行周期:${workDay}</td>
                </tr>
            </table>
            <div class="divTable" style="margin-left:-20px
            ;padding:0">
                <table id="xiafahistorytable" cellpadding='0' cellspacing='1' borde=''>
                    <tr>
                        <th style='width:12%'>检查项目</th>
                        <th style='width:25%'>检查内容</th>
                        <th style='width:10%'>检查方法</th>
                        <th style='width:12%'>检查方式</th>
                        <th style='width:8%'>评分</th>
                        <th style='width:8%'>权重</th>
                        <th style='width:25%'>存在问题</th>
                    </tr>
                    <#list xiafahistorytable as plan1>
                    <tr>
                        <td>${plan1.sccsScsuName}</td>
                        <td>${plan1.sccsScsuContent}</td>
                        <td>${plan1.sccsScsuMethod}</td>
                        <td>${plan1.sccsScsuRequied}</td>
                        <td>${plan1.sccsScsuScore}</td>
                        <td>${plan1.sccsScsuProportion}</td>
                        <td>${plan1.scosProblem}</td>
                    </tr>
                    </#list>
                    <tr>
 
                        <td class="">备注</td>
                        <td colspan="6">${remork}</td>
 
                    </tr>
                </table>
            </div>
 
            <table id='qianziList' class="titleTable2" cellspacing='1'
                cellpadding='3px'>
                <tr></tr>
                <tr id="qianzi_tr">
                    <#list qianziList as qz>
                    <td>${qz.role}</td> </#list>
                </tr>
            </table>
 
 
            <table class="titleTable2">
                    <tr>
                        <td class="titles" align='center' colspan="4">检查表下发情况</td>
                    </tr>
                    <tr>
                        <td class="">下发学校总数:${totalCount}</td>
                        <td class="">下发成功:${successCount}</td>
                        <td class="">下发失败:${errorCount}</td>
                    </tr>
                </table>
        </div>
    </div>
</body>
</html>