Procházet zdrojové kódy

临界生对比

wzl_h
wangzl před 2 roky
rodič
revize
703c85e30d

+ 18
- 0
css/common.css Zobrazit soubor

@@ -132,15 +132,33 @@ h1,h2,h3,h4 {
132 132
 .bg_5699FF {
133 133
   background-color: #5699FF;
134 134
 }
135
+.c_5699FF {
136
+  color: #5699FF;
137
+}
135 138
 .bg_FF5F56 {
136 139
   background-color: #FF5F56;
137 140
 }
141
+.c_FF5F56 {
142
+  color: #FF5F56;
143
+}
138 144
 .bg_5EC5C8 {
139 145
   background-color: #5EC5C8;
140 146
 }
147
+.c_5EC5C8 {
148
+  color: #5EC5C8;
149
+}
141 150
 .bg_F1982B {
142 151
   background-color: #F1982B;
143 152
 }
153
+.c_F1982B {
154
+  color: #F1982B;
155
+}
156
+.margin_left_6mm  {
157
+  margin-left: 6mm;
158
+}
159
+.margin_right_6mm  {
160
+  margin-right: 6mm;
161
+}
144 162
 .w10mm {
145 163
   width: 10mm;
146 164
 }

+ 13
- 0
css/scoreAnalysis/section_2_lin_all.css Zobrazit soubor

@@ -0,0 +1,13 @@
1
+.section_2_lin_all .echarts_result_content {
2
+  margin-top: 3mm;
3
+  padding: 2mm 3mm;
4
+  line-height: 7mm;
5
+  background-color: #fff;
6
+}
7
+.section_2_lin_all .echarts_result_content .dot {
8
+  display: inline-block;
9
+  margin-right: 2mm;
10
+  width: 2mm;
11
+  height: 2mm;
12
+  border-radius: 50%;
13
+}

+ 0
- 0
css/scoreAnalysis/section_2_lin_rank.css Zobrazit soubor


+ 0
- 0
css/scoreAnalysis/section_2_lin_score.css Zobrazit soubor


+ 13
- 0
css/scoreAnalysis/section_2_lin_single.css Zobrazit soubor

@@ -0,0 +1,13 @@
1
+.section_2_lin_single .echarts_result_content {
2
+    margin-top: 3mm;
3
+    padding: 2mm 3mm;
4
+    line-height: 7mm;
5
+    background-color: #fff;
6
+}
7
+.section_2_lin_single .echarts_result_content .dot {
8
+    display: inline-block;
9
+    margin-right: 2mm;
10
+    width: 2mm;
11
+    height: 2mm;
12
+    border-radius: 50%;
13
+}

+ 254
- 0
js/scoreAnalysis/section_2_lin_all.js Zobrazit soubor

@@ -0,0 +1,254 @@
1
+$(function () {
2
+  // 按名次统计
3
+  function initClassCriticalRankEcharts() {
4
+    var legend_data = [">10名", "≤10名"];
5
+    var xAxis_data = ["全部班级", "九年级一班", "九年级二班"];
6
+    var series_data1 = [7, 4, 3];
7
+    var series_data2 = [-4, -2, -2];
8
+    var option = {
9
+      title: {
10
+        text: "人",
11
+        x: "left",
12
+        y: "top",
13
+        textStyle: {
14
+          color: "#5F6E82",
15
+          fontSize: 12,
16
+          fontWeight: 500
17
+        }
18
+      },
19
+      color: ["#5C99FF", "#F39A2C"],
20
+      legend: {
21
+        itemWidth: 6,
22
+        itemHeight: 6,
23
+        bottom: 30,
24
+        data: legend_data
25
+      },
26
+      grid: {
27
+        top: 30,
28
+        left: 5,
29
+        right: 0,
30
+        bottom: 65,
31
+        containLabel: true
32
+      },
33
+      xAxis: [
34
+        {
35
+          type: "category",
36
+          offset: 10,
37
+          position: "bottom",
38
+          data: xAxis_data,
39
+          axisLabel: {
40
+            color: "#5F6E82" //更改坐标轴文字颜色
41
+          },
42
+          axisTick: {
43
+            alignWithLabel: true
44
+          },
45
+          boundaryGap: true,
46
+          triggerEvent: true,
47
+          axisLine: {
48
+            show: true, //是否显示轴线
49
+            lineStyle: {
50
+              color: "#DADADA" //刻度线的颜色
51
+            }
52
+          }
53
+        }
54
+      ],
55
+      yAxis: [
56
+        {
57
+          type: "value",
58
+          axisTick: {
59
+            show: false //刻度
60
+          },
61
+          axisLine: {
62
+            show: false, //是否显示轴线
63
+            lineStyle: {
64
+              color: "#DADADA" //刻度线的颜色
65
+            }
66
+          },
67
+          splitLine: {
68
+            //网格线
69
+            lineStyle: {
70
+              type: "dotted" //设置网格线类型 dotted:虚线   solid:实线
71
+            },
72
+            show: true //隐藏或显示
73
+          },
74
+          axisLabel: {
75
+            color: "#5F6E82" //更改坐标轴文字颜色
76
+          }
77
+        }
78
+      ],
79
+      series: [
80
+        {
81
+          name: legend_data[0],
82
+          type: "bar",
83
+          stack: "one",
84
+          barWidth: 32,
85
+          // 柱状图最小高度
86
+          barMinHeight: 0,
87
+          barGap: 0,
88
+          label: {
89
+            normal: {
90
+              show: true,
91
+              align: "center",
92
+              verticalAlign: "bottom",
93
+              position: "top",
94
+              distance: 0
95
+            }
96
+          },
97
+          data: series_data1
98
+        },
99
+        {
100
+          name: legend_data[1],
101
+          type: "bar",
102
+          stack: "one",
103
+          barWidth: 32,
104
+          // 柱状图最小高度
105
+          barMinHeight: 0,
106
+          barGap: 0,
107
+          label: {
108
+            normal: {
109
+              show: true,
110
+              align: "center",
111
+              verticalAlign: "top",
112
+              position: "bottom",
113
+              distance: 0,
114
+              formatter: function (params) {
115
+                return Math.abs(params.value);
116
+              }
117
+            }
118
+          },
119
+          data: series_data2
120
+        }
121
+      ]
122
+    };
123
+    var myEcharts = echarts.init(document.querySelector(".section_2_lin_all #classCriticalRankEcharts"));
124
+    myEcharts.clear();
125
+    myEcharts.setOption(option);
126
+  }
127
+  // 按分数统计
128
+  function initClassCriticalScoreEcharts() {
129
+    var legend_data = [">10分", "≤10分"];
130
+    var xAxis_data = ["全部班级", "九年级一班", "九年级二班"];
131
+    var series_data1 = [7, 4, 3];
132
+    var series_data2 = [-4, -2, -2];
133
+    var option = {
134
+      title: {
135
+        text: "人",
136
+        x: "left",
137
+        y: "top",
138
+        textStyle: {
139
+          color: "#5F6E82",
140
+          fontSize: 12,
141
+          fontWeight: 500
142
+        }
143
+      },
144
+      color: ["#5C99FF", "#F39A2C"],
145
+      legend: {
146
+        itemWidth: 6,
147
+        itemHeight: 6,
148
+        bottom: 30,
149
+        data: legend_data
150
+      },
151
+      grid: {
152
+        top: 30,
153
+        left: 5,
154
+        right: 0,
155
+        bottom: 65,
156
+        containLabel: true
157
+      },
158
+      xAxis: [
159
+        {
160
+          type: "category",
161
+          offset: 10,
162
+          position: "bottom",
163
+          data: xAxis_data,
164
+          axisLabel: {
165
+            color: "#5F6E82" //更改坐标轴文字颜色
166
+          },
167
+          axisTick: {
168
+            alignWithLabel: true
169
+          },
170
+          boundaryGap: true,
171
+          triggerEvent: true,
172
+          axisLine: {
173
+            show: true, //是否显示轴线
174
+            lineStyle: {
175
+              color: "#DADADA" //刻度线的颜色
176
+            }
177
+          }
178
+        }
179
+      ],
180
+      yAxis: [
181
+        {
182
+          type: "value",
183
+          axisTick: {
184
+            show: false //刻度
185
+          },
186
+          axisLine: {
187
+            show: false, //是否显示轴线
188
+            lineStyle: {
189
+              color: "#DADADA" //刻度线的颜色
190
+            }
191
+          },
192
+          splitLine: {
193
+            //网格线
194
+            lineStyle: {
195
+              type: "dotted" //设置网格线类型 dotted:虚线   solid:实线
196
+            },
197
+            show: true //隐藏或显示
198
+          },
199
+          axisLabel: {
200
+            color: "#5F6E82" //更改坐标轴文字颜色
201
+          }
202
+        }
203
+      ],
204
+      series: [
205
+        {
206
+          name: legend_data[0],
207
+          type: "bar",
208
+          stack: "one",
209
+          barWidth: 32,
210
+          // 柱状图最小高度
211
+          barMinHeight: 0,
212
+          barGap: 0,
213
+          label: {
214
+            normal: {
215
+              show: true,
216
+              align: "center",
217
+              verticalAlign: "bottom",
218
+              position: "top",
219
+              distance: 0
220
+            }
221
+          },
222
+          data: series_data1
223
+        },
224
+        {
225
+          name: legend_data[1],
226
+          type: "bar",
227
+          stack: "one",
228
+          barWidth: 32,
229
+          // 柱状图最小高度
230
+          barMinHeight: 0,
231
+          barGap: 0,
232
+          label: {
233
+            normal: {
234
+              show: true,
235
+              align: "center",
236
+              verticalAlign: "top",
237
+              position: "bottom",
238
+              distance: 0,
239
+              formatter: function (params) {
240
+                return Math.abs(params.value);
241
+              }
242
+            }
243
+          },
244
+          data: series_data2
245
+        }
246
+      ]
247
+    };
248
+    var myEcharts = echarts.init(document.querySelector(".section_2_lin_all #classCriticalScoreEcharts"));
249
+    myEcharts.clear();
250
+    myEcharts.setOption(option);
251
+  }
252
+  initClassCriticalRankEcharts();
253
+  initClassCriticalScoreEcharts();
254
+});

+ 0
- 0
js/scoreAnalysis/section_2_lin_rank.js Zobrazit soubor


+ 0
- 0
js/scoreAnalysis/section_2_lin_score.js Zobrazit soubor


+ 254
- 0
js/scoreAnalysis/section_2_lin_single.js Zobrazit soubor

@@ -0,0 +1,254 @@
1
+$(function () {
2
+    // 按名次统计
3
+    function initClassCriticalRankEcharts() {
4
+      var legend_data = [">10名", "≤10名"];
5
+      var xAxis_data = ["全部班级", "九年级一班", "九年级二班"];
6
+      var series_data1 = [7, 4, 3];
7
+      var series_data2 = [-4, -2, -2];
8
+      var option = {
9
+        title: {
10
+          text: "人",
11
+          x: "left",
12
+          y: "top",
13
+          textStyle: {
14
+            color: "#5F6E82",
15
+            fontSize: 12,
16
+            fontWeight: 500
17
+          }
18
+        },
19
+        color: ["#5C99FF", "#F39A2C"],
20
+        legend: {
21
+          itemWidth: 6,
22
+          itemHeight: 6,
23
+          bottom: 30,
24
+          data: legend_data
25
+        },
26
+        grid: {
27
+          top: 30,
28
+          left: 5,
29
+          right: 0,
30
+          bottom: 65,
31
+          containLabel: true
32
+        },
33
+        xAxis: [
34
+          {
35
+            type: "category",
36
+            offset: 10,
37
+            position: "bottom",
38
+            data: xAxis_data,
39
+            axisLabel: {
40
+              color: "#5F6E82" //更改坐标轴文字颜色
41
+            },
42
+            axisTick: {
43
+              alignWithLabel: true
44
+            },
45
+            boundaryGap: true,
46
+            triggerEvent: true,
47
+            axisLine: {
48
+              show: true, //是否显示轴线
49
+              lineStyle: {
50
+                color: "#DADADA" //刻度线的颜色
51
+              }
52
+            }
53
+          }
54
+        ],
55
+        yAxis: [
56
+          {
57
+            type: "value",
58
+            axisTick: {
59
+              show: false //刻度
60
+            },
61
+            axisLine: {
62
+              show: false, //是否显示轴线
63
+              lineStyle: {
64
+                color: "#DADADA" //刻度线的颜色
65
+              }
66
+            },
67
+            splitLine: {
68
+              //网格线
69
+              lineStyle: {
70
+                type: "dotted" //设置网格线类型 dotted:虚线   solid:实线
71
+              },
72
+              show: true //隐藏或显示
73
+            },
74
+            axisLabel: {
75
+              color: "#5F6E82" //更改坐标轴文字颜色
76
+            }
77
+          }
78
+        ],
79
+        series: [
80
+          {
81
+            name: legend_data[0],
82
+            type: "bar",
83
+            stack: "one",
84
+            barWidth: 32,
85
+            // 柱状图最小高度
86
+            barMinHeight: 0,
87
+            barGap: 0,
88
+            label: {
89
+              normal: {
90
+                show: true,
91
+                align: "center",
92
+                verticalAlign: "bottom",
93
+                position: "top",
94
+                distance: 0
95
+              }
96
+            },
97
+            data: series_data1
98
+          },
99
+          {
100
+            name: legend_data[1],
101
+            type: "bar",
102
+            stack: "one",
103
+            barWidth: 32,
104
+            // 柱状图最小高度
105
+            barMinHeight: 0,
106
+            barGap: 0,
107
+            label: {
108
+              normal: {
109
+                show: true,
110
+                align: "center",
111
+                verticalAlign: "top",
112
+                position: "bottom",
113
+                distance: 0,
114
+                formatter: function (params) {
115
+                  return Math.abs(params.value);
116
+                }
117
+              }
118
+            },
119
+            data: series_data2
120
+          }
121
+        ]
122
+      };
123
+      var myEcharts = echarts.init(document.querySelector(".section_2_lin_single #classCriticalRankEcharts"));
124
+      myEcharts.clear();
125
+      myEcharts.setOption(option);
126
+    }
127
+    // 按分数统计
128
+    function initClassCriticalScoreEcharts() {
129
+      var legend_data = [">10分", "≤10分"];
130
+      var xAxis_data = ["全部班级", "九年级一班", "九年级二班"];
131
+      var series_data1 = [7, 4, 3];
132
+      var series_data2 = [-4, -2, -2];
133
+      var option = {
134
+        title: {
135
+          text: "人",
136
+          x: "left",
137
+          y: "top",
138
+          textStyle: {
139
+            color: "#5F6E82",
140
+            fontSize: 12,
141
+            fontWeight: 500
142
+          }
143
+        },
144
+        color: ["#5C99FF", "#F39A2C"],
145
+        legend: {
146
+          itemWidth: 6,
147
+          itemHeight: 6,
148
+          bottom: 30,
149
+          data: legend_data
150
+        },
151
+        grid: {
152
+          top: 30,
153
+          left: 5,
154
+          right: 0,
155
+          bottom: 65,
156
+          containLabel: true
157
+        },
158
+        xAxis: [
159
+          {
160
+            type: "category",
161
+            offset: 10,
162
+            position: "bottom",
163
+            data: xAxis_data,
164
+            axisLabel: {
165
+              color: "#5F6E82" //更改坐标轴文字颜色
166
+            },
167
+            axisTick: {
168
+              alignWithLabel: true
169
+            },
170
+            boundaryGap: true,
171
+            triggerEvent: true,
172
+            axisLine: {
173
+              show: true, //是否显示轴线
174
+              lineStyle: {
175
+                color: "#DADADA" //刻度线的颜色
176
+              }
177
+            }
178
+          }
179
+        ],
180
+        yAxis: [
181
+          {
182
+            type: "value",
183
+            axisTick: {
184
+              show: false //刻度
185
+            },
186
+            axisLine: {
187
+              show: false, //是否显示轴线
188
+              lineStyle: {
189
+                color: "#DADADA" //刻度线的颜色
190
+              }
191
+            },
192
+            splitLine: {
193
+              //网格线
194
+              lineStyle: {
195
+                type: "dotted" //设置网格线类型 dotted:虚线   solid:实线
196
+              },
197
+              show: true //隐藏或显示
198
+            },
199
+            axisLabel: {
200
+              color: "#5F6E82" //更改坐标轴文字颜色
201
+            }
202
+          }
203
+        ],
204
+        series: [
205
+          {
206
+            name: legend_data[0],
207
+            type: "bar",
208
+            stack: "one",
209
+            barWidth: 32,
210
+            // 柱状图最小高度
211
+            barMinHeight: 0,
212
+            barGap: 0,
213
+            label: {
214
+              normal: {
215
+                show: true,
216
+                align: "center",
217
+                verticalAlign: "bottom",
218
+                position: "top",
219
+                distance: 0
220
+              }
221
+            },
222
+            data: series_data1
223
+          },
224
+          {
225
+            name: legend_data[1],
226
+            type: "bar",
227
+            stack: "one",
228
+            barWidth: 32,
229
+            // 柱状图最小高度
230
+            barMinHeight: 0,
231
+            barGap: 0,
232
+            label: {
233
+              normal: {
234
+                show: true,
235
+                align: "center",
236
+                verticalAlign: "top",
237
+                position: "bottom",
238
+                distance: 0,
239
+                formatter: function (params) {
240
+                  return Math.abs(params.value);
241
+                }
242
+              }
243
+            },
244
+            data: series_data2
245
+          }
246
+        ]
247
+      };
248
+      var myEcharts = echarts.init(document.querySelector(".section_2_lin_single #classCriticalScoreEcharts"));
249
+      myEcharts.clear();
250
+      myEcharts.setOption(option);
251
+    }
252
+    initClassCriticalRankEcharts();
253
+    initClassCriticalScoreEcharts();
254
+  });

+ 2
- 2
js/section_2.js Zobrazit soubor

@@ -8,8 +8,8 @@ $(function() {
8 8
     "section_2_class_single",
9 9
     "section_2_level",
10 10
     "section_2_part",
11
-    "section_2_lin_rank",
12
-    "section_2_lin_score",
11
+    "section_2_lin_all",
12
+    "section_2_lin_single",
13 13
     "section_2_excellent"
14 14
   ];
15 15
   $(".score_analysis_root").html(sectionsHtmlArr.map(function (htmlName) {

+ 2
- 2
notes.txt Zobrazit soubor

@@ -8,8 +8,8 @@ section_2.html 第二部分
8 8
         班级成绩对比-单科 section_2_class_single
9 9
         分数等级对比-全科(分数等级对比-单科)section_2_level
10 10
         分数分段对比-全科(分数分段对比-单科)section_2_part
11
-        临界生对比-全科 (按名次)(临界生对比-单科 (按名次))section_2_lin_rank
12
-        临界生对比-全科 (按分数)(临界生对比-单科 (按分数))section_2_lin_score
11
+        临界生对比-全科 (按名次)临界生对比-全科 (按分数)section_2_lin_all
12
+        临界生对比-单科 (按名次)临界生对比-单科 (按分数)section_2_lin_single
13 13
         优秀生、学困生对比-全科(优秀生、学困生对比-单科)section_2_excellent
14 14
 section_3.html 第三部分
15 15
 section_4.html 第四部分

+ 116
- 0
sections/scoreAnalysis/section_2_lin_all.html Zobrazit soubor

@@ -0,0 +1,116 @@
1
+<!DOCTYPE html>
2
+<html lang="zh-cn">
3
+<head>
4
+  <meta charset="UTF-8">
5
+  <meta http-equiv="X-UA-Compatible" content="IE=edge">
6
+  <meta name="viewport" content="width=device-width, initial-scale=1.0">
7
+  <title>校本PDF报告-第二章 成绩分析</title>
8
+  <link rel="stylesheet" href="../../css/scoreAnalysis/section_2_lin_all.css">
9
+</head>
10
+<body>
11
+  <div class="page_root section_2_lin_all">
12
+    <h2 class="section_title_2">4.临界生对比</h2>
13
+    <h3 class="section_title_3">4.1 全科临界生对比</h3>
14
+    <h4 class="section_title_4">4.1.1 各班临界生对比分析</h4>
15
+    <div class="echarts_result">
16
+      <div>按名次统计</div>
17
+      <div class="echarts_result_content">
18
+        <div>临界名次:<span class="c_5699FF">90</span>名<span class="margin_left_6mm margin_right_6mm">浮动名次:<span
19
+              class="c_FF5F56">5</span>名</span>名次区间:<span class="c_5699FF">85 - 95</span>名</div>
20
+      </div>
21
+    </div>
22
+    <div id="classCriticalRankEcharts" style="margin: 0 4mm 4mm; height: 120mm"></div>
23
+  </div>
24
+  <div class="page_root section_2_lin_all">
25
+    <h4 class="section_title_4">4.1.2 各班名次整体分析</h4>
26
+    <table border="1" class="my_table">
27
+      <thead>
28
+        <tr>
29
+          <th>班级</th>
30
+          <th>人数</th>
31
+          <th>占比</th>
32
+        </tr>
33
+      </thead>
34
+      <tbody>
35
+        <tr>
36
+          <td><div class="my_cell">全年级</div></td>
37
+          <td><div class="my_cell">5</div></td>
38
+          <td><div class="my_cell">4%</div></td>
39
+        </tr>
40
+        <tr>
41
+          <td><div class="my_cell">八年级一班</div></td>
42
+          <td><div class="my_cell">5</div></td>
43
+          <td><div class="my_cell">4%</div></td>
44
+        </tr>
45
+        <tr>
46
+          <td><div class="my_cell">八年级一班</div></td>
47
+          <td><div class="my_cell">5</div></td>
48
+          <td><div class="my_cell">4%</div></td>
49
+        </tr>
50
+        <tr>
51
+          <td><div class="my_cell">八年级一班</div></td>
52
+          <td><div class="my_cell">5</div></td>
53
+          <td><div class="my_cell">4%</div></td>
54
+        </tr>
55
+      </tbody>
56
+    </table>
57
+    <div class="echarts_result">
58
+      <div>上图统计结果表示:</div>
59
+      <div class="echarts_result_content">
60
+        <div><span class="dot bg_FF5F56"></span>临界生最多的班级:八年级六班</div>
61
+      </div>
62
+    </div>
63
+  </div>
64
+  <div class="page_root section_2_lin_all">
65
+    <div class="echarts_result">
66
+      <div>按分数统计</div>
67
+      <div class="echarts_result_content">
68
+        <div>临界分:<span class="c_5699FF">90</span>分<span class="margin_left_6mm margin_right_6mm">浮动分:<span
69
+              class="c_FF5F56">5</span>分</span>分数区间:<span class="c_5699FF">85 - 95</span>分</div>
70
+      </div>
71
+    </div>
72
+    <div id="classCriticalScoreEcharts" style="margin: 0 4mm 4mm; height: 120mm"></div>
73
+  </div>
74
+  <div class="page_root section_2_lin_all">
75
+    <h4 class="section_title_4">4.1.3 各班分数整体分析</h4>
76
+    <table border="1" class="my_table">
77
+      <thead>
78
+        <tr>
79
+          <th>班级</th>
80
+          <th>人数</th>
81
+          <th>占比</th>
82
+        </tr>
83
+      </thead>
84
+      <tbody>
85
+        <tr>
86
+          <td><div class="my_cell">全年级</div></td>
87
+          <td><div class="my_cell">5</div></td>
88
+          <td><div class="my_cell">4%</div></td>
89
+        </tr>
90
+        <tr>
91
+          <td><div class="my_cell">八年级一班</div></td>
92
+          <td><div class="my_cell">5</div></td>
93
+          <td><div class="my_cell">4%</div></td>
94
+        </tr>
95
+        <tr>
96
+          <td><div class="my_cell">八年级一班</div></td>
97
+          <td><div class="my_cell">5</div></td>
98
+          <td><div class="my_cell">4%</div></td>
99
+        </tr>
100
+        <tr>
101
+          <td><div class="my_cell">八年级一班</div></td>
102
+          <td><div class="my_cell">5</div></td>
103
+          <td><div class="my_cell">4%</div></td>
104
+        </tr>
105
+      </tbody>
106
+    </table>
107
+    <div class="echarts_result">
108
+      <div>上图统计结果表示:</div>
109
+      <div class="echarts_result_content">
110
+        <div><span class="dot bg_FF5F56"></span>临界生最多的班级:八年级六班</div>
111
+      </div>
112
+    </div>
113
+  </div>
114
+  <script src="../../js/scoreAnalysis/section_2_lin_all.js"></script>
115
+</body>
116
+</html>

+ 0
- 97
sections/scoreAnalysis/section_2_lin_rank.html Zobrazit soubor

@@ -1,97 +0,0 @@
1
-<!DOCTYPE html>
2
-<html lang="zh-cn">
3
-<head>
4
-  <meta charset="UTF-8">
5
-  <meta http-equiv="X-UA-Compatible" content="IE=edge">
6
-  <meta name="viewport" content="width=device-width, initial-scale=1.0">
7
-  <title>校本PDF报告-第二章 成绩分析</title>
8
-</head>
9
-<body>
10
-  <div class="page_root section_2_lin_rank">
11
-    <h2 class="section_title_2">3.分数分段级对比</h2>
12
-      <h3 class="section_title_3">3.1 全科分数段统计</h3>
13
-      <h4 class="section_title_4">3.1.1 全年级各分数段分析</h4>
14
-      <div id="classscoreLevelEcharts" style="margin: 0 4mm 4mm; height: 80mm"></div>
15
-      <h4 class="section_title_4">3.1.2 各班分数段比例分布</h4>
16
-      <table border="1" class="my_table">
17
-        <thead>
18
-          <tr>
19
-            <th rowspan="2">班级</th>
20
-            <th colspan="2">A类</th>
21
-            <th colspan="2">B类</th>
22
-            <th colspan="2">C类</th>
23
-            <th colspan="2">D类</th>
24
-            <th colspan="2">E类</th>
25
-          </tr>
26
-          <tr>
27
-            <th>人数</th>
28
-            <th>比例</th>
29
-            <th>人数</th>
30
-            <th>比例</th>
31
-            <th>人数</th>
32
-            <th>比例</th>
33
-            <th>人数</th>
34
-            <th>比例</th>
35
-            <th>人数</th>
36
-            <th>比例</th>
37
-          </tr>
38
-        </thead>
39
-        <tbody>
40
-          <tr>
41
-            <td><div class="my_cell">全部班级</div></td>
42
-            <td><div class="my_cell">5</div></td>
43
-            <td><div class="my_cell">4%</div></td>
44
-            <td><div class="my_cell">5</div></td>
45
-            <td><div class="my_cell">4%</div></td>
46
-            <td><div class="my_cell">5</div></td>
47
-            <td><div class="my_cell">4%</div></td>
48
-            <td><div class="my_cell">5</div></td>
49
-            <td><div class="my_cell">4%</div></td>
50
-            <td><div class="my_cell">5</div></td>
51
-            <td><div class="my_cell">4%</div></td>
52
-          </tr>
53
-          <tr>
54
-            <td><div class="my_cell">八年级一班</div></td>
55
-            <td><div class="my_cell">5</div></td>
56
-            <td><div class="my_cell">4%</div></td>
57
-            <td><div class="my_cell">5</div></td>
58
-            <td><div class="my_cell">4%</div></td>
59
-            <td><div class="my_cell">5</div></td>
60
-            <td><div class="my_cell">4%</div></td>
61
-            <td><div class="my_cell">5</div></td>
62
-            <td><div class="my_cell">4%</div></td>
63
-            <td><div class="my_cell">5</div></td>
64
-            <td><div class="my_cell">4%</div></td>
65
-          </tr>
66
-          <tr>
67
-            <td><div class="my_cell">八年级二班</div></td>
68
-            <td><div class="my_cell">5</div></td>
69
-            <td><div class="my_cell">4%</div></td>
70
-            <td><div class="my_cell">5</div></td>
71
-            <td><div class="my_cell">4%</div></td>
72
-            <td><div class="my_cell">5</div></td>
73
-            <td><div class="my_cell">4%</div></td>
74
-            <td><div class="my_cell">5</div></td>
75
-            <td><div class="my_cell">4%</div></td>
76
-            <td><div class="my_cell">5</div></td>
77
-            <td><div class="my_cell">4%</div></td>
78
-          </tr>
79
-          <tr>
80
-            <td><div class="my_cell">八年级三班</div></td>
81
-            <td><div class="my_cell">5</div></td>
82
-            <td><div class="my_cell">4%</div></td>
83
-            <td><div class="my_cell">5</div></td>
84
-            <td><div class="my_cell">4%</div></td>
85
-            <td><div class="my_cell">5</div></td>
86
-            <td><div class="my_cell">4%</div></td>
87
-            <td><div class="my_cell">5</div></td>
88
-            <td><div class="my_cell">4%</div></td>
89
-            <td><div class="my_cell">5</div></td>
90
-            <td><div class="my_cell">4%</div></td>
91
-          </tr>
92
-        </tbody>
93
-      </table>
94
-  </div>
95
-  <script src="../../js/scoreAnalysis/section_2_lin_rank.js"></script>
96
-</body>
97
-</html>

+ 0
- 13
sections/scoreAnalysis/section_2_lin_score.html Zobrazit soubor

@@ -1,13 +0,0 @@
1
-<!DOCTYPE html>
2
-<html lang="zh-cn">
3
-<head>
4
-  <meta charset="UTF-8">
5
-  <meta http-equiv="X-UA-Compatible" content="IE=edge">
6
-  <meta name="viewport" content="width=device-width, initial-scale=1.0">
7
-  <title>校本PDF报告-第二章 成绩分析</title>
8
-</head>
9
-<body>
10
-  <div class="page_root"></div>
11
-  <script src="../../js/scoreAnalysis/section_2_lin_score.js"></script>
12
-</body>
13
-</html>

+ 115
- 0
sections/scoreAnalysis/section_2_lin_single.html Zobrazit soubor

@@ -0,0 +1,115 @@
1
+<!DOCTYPE html>
2
+<html lang="zh-cn">
3
+<head>
4
+  <meta charset="UTF-8">
5
+  <meta http-equiv="X-UA-Compatible" content="IE=edge">
6
+  <meta name="viewport" content="width=device-width, initial-scale=1.0">
7
+  <title>校本PDF报告-第二章 成绩分析</title>
8
+  <link rel="stylesheet" href="../../css/scoreAnalysis/section_2_lin_single.css">
9
+</head>
10
+<body>
11
+  <div class="page_root section_2_lin_single">
12
+    <h3 class="section_title_3">4.2 全科临界生对比</h3>
13
+    <h4 class="section_title_4">4.2.1 各班临界生对比分析</h4>
14
+    <div class="echarts_result">
15
+      <div>按名次统计</div>
16
+      <div class="echarts_result_content">
17
+        <div>临界名次:<span class="c_5699FF">90</span>名<span class="margin_left_6mm margin_right_6mm">浮动名次:<span
18
+              class="c_FF5F56">5</span>名</span>名次区间:<span class="c_5699FF">85 - 95</span>名</div>
19
+      </div>
20
+    </div>
21
+    <div id="classCriticalRankEcharts" style="margin: 0 4mm 4mm; height: 120mm"></div>
22
+  </div>
23
+  <div class="page_root section_2_lin_single">
24
+    <h4 class="section_title_4">4.2.2 各班名次整体分析</h4>
25
+    <table border="1" class="my_table">
26
+      <thead>
27
+        <tr>
28
+          <th>班级</th>
29
+          <th>人数</th>
30
+          <th>占比</th>
31
+        </tr>
32
+      </thead>
33
+      <tbody>
34
+        <tr>
35
+          <td><div class="my_cell">全年级</div></td>
36
+          <td><div class="my_cell">5</div></td>
37
+          <td><div class="my_cell">4%</div></td>
38
+        </tr>
39
+        <tr>
40
+          <td><div class="my_cell">八年级一班</div></td>
41
+          <td><div class="my_cell">5</div></td>
42
+          <td><div class="my_cell">4%</div></td>
43
+        </tr>
44
+        <tr>
45
+          <td><div class="my_cell">八年级一班</div></td>
46
+          <td><div class="my_cell">5</div></td>
47
+          <td><div class="my_cell">4%</div></td>
48
+        </tr>
49
+        <tr>
50
+          <td><div class="my_cell">八年级一班</div></td>
51
+          <td><div class="my_cell">5</div></td>
52
+          <td><div class="my_cell">4%</div></td>
53
+        </tr>
54
+      </tbody>
55
+    </table>
56
+    <div class="echarts_result">
57
+      <div>上图统计结果表示:</div>
58
+      <div class="echarts_result_content">
59
+        <div><span class="dot bg_FF5F56"></span>临界生最多的班级:八年级六班</div>
60
+      </div>
61
+    </div>
62
+  </div>
63
+  <div class="page_root section_2_lin_single">
64
+    <div class="echarts_result">
65
+      <div>按分数统计</div>
66
+      <div class="echarts_result_content">
67
+        <div>临界分:<span class="c_5699FF">90</span>分<span class="margin_left_6mm margin_right_6mm">浮动分:<span
68
+              class="c_FF5F56">5</span>分</span>分数区间:<span class="c_5699FF">85 - 95</span>分</div>
69
+      </div>
70
+    </div>
71
+    <div id="classCriticalScoreEcharts" style="margin: 0 4mm 4mm; height: 120mm"></div>
72
+  </div>
73
+  <div class="page_root section_2_lin_single">
74
+    <h4 class="section_title_4">4.2.3 各班分数整体分析</h4>
75
+    <table border="1" class="my_table">
76
+      <thead>
77
+        <tr>
78
+          <th>班级</th>
79
+          <th>人数</th>
80
+          <th>占比</th>
81
+        </tr>
82
+      </thead>
83
+      <tbody>
84
+        <tr>
85
+          <td><div class="my_cell">全年级</div></td>
86
+          <td><div class="my_cell">5</div></td>
87
+          <td><div class="my_cell">4%</div></td>
88
+        </tr>
89
+        <tr>
90
+          <td><div class="my_cell">八年级一班</div></td>
91
+          <td><div class="my_cell">5</div></td>
92
+          <td><div class="my_cell">4%</div></td>
93
+        </tr>
94
+        <tr>
95
+          <td><div class="my_cell">八年级一班</div></td>
96
+          <td><div class="my_cell">5</div></td>
97
+          <td><div class="my_cell">4%</div></td>
98
+        </tr>
99
+        <tr>
100
+          <td><div class="my_cell">八年级一班</div></td>
101
+          <td><div class="my_cell">5</div></td>
102
+          <td><div class="my_cell">4%</div></td>
103
+        </tr>
104
+      </tbody>
105
+    </table>
106
+    <div class="echarts_result">
107
+      <div>上图统计结果表示:</div>
108
+      <div class="echarts_result_content">
109
+        <div><span class="dot bg_FF5F56"></span>临界生最多的班级:八年级六班</div>
110
+      </div>
111
+    </div>
112
+  </div>
113
+  <script src="../../js/scoreAnalysis/section_2_lin_single.js"></script>
114
+</body>
115
+</html>

Načítá se…
Zrušit
Uložit