-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathweeklyReport.html
More file actions
137 lines (126 loc) · 2.88 KB
/
weeklyReport.html
File metadata and controls
137 lines (126 loc) · 2.88 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>指标年度达成情况一览</title>
<style>
* {
box-sizing: border-box;
}
body {
padding: 0;
margin: 0;
}
.header {
padding: 10px;
font-size: 20px;
font-weight: bold;
text-align: center;
width: 100%;
}
table {
table-layout: fixed;
border-collapse: separate;
border-top: 1px solid #ebeef5;
text-align: center;
/* width: 100%; */
}
table th {
white-space: nowrap;
overflow: hidden;
user-select: none;
background-color: #FFFFCC;
}
table td,
table th {
border-right: 1px solid #ebeef5;
border-bottom: 1px solid #ebeef5;
padding: 12px;
}
table tr td:first-child,
table th:first-child {
border-left: 1px solid #ebeef5;
}
.danger-text {
background-color: #CC0000;
color: #fff;
}
.warning-text {
background-color: #FF6666;
color: #fff;
}
</style>
</head>
<body>
<div class="header">
重点指标年度达成预测及风险预警-2022年第13周
</div>
<table cellspacing="0" cellpadding="0">
<tr>
<th rowspan="2">序号</th>
<th rowspan="2">预警等级</th>
<th rowspan="2">指标名称</th>
<th rowspan="2">本年目标</th>
<th colspan="4">年度指标达成</th>
</tr>
<tr>
<th>至3/24实际</th>
<th>至3/31实际</th>
<th>至4/7预测</th>
<th>预测目标差值</th>
</tr>
<tr>
<td>1</td>
<td class="danger-text">高危</td>
<td>呼入转人工成功率</td>
<td>93.00%</td>
<td>86.39%</td>
<td>86.91%</td>
<td>87.38%</td>
<td class="warning-text">-5.62%</td>
</tr>
<tr>
<td>2</td>
<td>安全</td>
<td>呼入转人工成功率</td>
<td>93.00%</td>
<td>86.39%</td>
<td>86.91%</td>
<td>87.38%</td>
<td>-5.62%</td>
</tr>
<tr>
<td>2</td>
<td>安全</td>
<td>呼入转人工成功率</td>
<td>93.00%</td>
<td>86.39%</td>
<td>86.91%</td>
<td>87.38%</td>
<td>-5.62%</td>
</tr>
<tr>
<td>2</td>
<td>安全</td>
<td>呼入转人工成功率</td>
<td>93.00%</td>
<td>86.39%</td>
<td>86.91%</td>
<td>87.38%</td>
<td>-5.62%</td>
</tr>
<tr>
<td>2</td>
<td>安全</td>
<td>呼入转人工成功率</td>
<td>93.00%</td>
<td>86.39%</td>
<td>86.91%</td>
<td>87.38%</td>
<td>-5.62%</td>
</tr>
</table>
</body>
</html>