4c4f7640
梁保满
路由表,路由前端文件
|
1
|
<template>
|
b769660c
梁保满
备课组题细节调整,随堂问列表页面开发完成
|
2
3
4
5
6
7
|
<div>
<back-box>
<template slot="title">
<span>单课分析</span>
</template>
</back-box>
|
ee6e7628
梁保满
备题组卷借口数据对接调整
|
8
9
10
11
12
|
<div class="page-content">
<div class="tab-box">
<span
class="tab-item"
:class="type == 1 ? 'active' : ''"
|
9309dc5d
梁保满
任课老师接口完成
|
13
|
@click="setType(1)"
|
ee6e7628
梁保满
备题组卷借口数据对接调整
|
14
15
16
17
18
|
>答题表现</span
>
<span
class="tab-item"
:class="type == 2 ? 'active' : ''"
|
9309dc5d
梁保满
任课老师接口完成
|
19
|
@click="setType(2)"
|
ee6e7628
梁保满
备题组卷借口数据对接调整
|
20
21
22
23
24
|
>学生问答表现</span
>
<span
class="tab-item"
:class="type == 3 ? 'active' : ''"
|
9309dc5d
梁保满
任课老师接口完成
|
25
|
@click="setType(3)"
|
ee6e7628
梁保满
备题组卷借口数据对接调整
|
26
27
28
29
30
|
>学生互动表现</span
>
<span
class="tab-item"
:class="type == 4 ? 'active' : ''"
|
9309dc5d
梁保满
任课老师接口完成
|
31
|
@click="setType(4)"
|
ee6e7628
梁保满
备题组卷借口数据对接调整
|
32
33
34
|
>签到明细</span
>
</div>
|
9309dc5d
梁保满
任课老师接口完成
|
35
|
<div v-loading="loading">
|
e371f2dc
梁保满
软件下载,学校,班级老师等报表导入...
|
36
|
<div id="print-content">
|
3617eaad
梁保满
长水账号设置
|
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
<ul class="info" v-if="type == 1">
<li class="info-item">科目:{{ detail.subjectName }}</li>
<li class="info-item">课时:{{ detail.title }}</li>
<li class="info-item">上课时间:{{ detail.startTime }}</li>
<li class="info-item">下课时间:{{ detail.endTime }}</li>
<li class="info-item">签到人数:{{ detail.answeredNum }}</li>
<li class="info-item">题目总数:{{ detail.questionNum }}</li>
<li class="info-item">答题总数:{{ detail.totalAnswersNum }}</li>
<li class="info-item">课时时长:{{ detail.duration }}分钟</li>
<li class="info-item">
总参与度::{{ detail.participationRate }}%
</li>
<li class="info-item">
班级总正确率:{{ detail.classCorrectRate }}%
</li>
<li class="info-item">
已答总正确率:{{ detail.answerCorrectRate }}%
</li>
<li class="info-item">
反馈时长:{{ setDuration(detail.consumingDuration) }}
</li>
</ul>
|
e371f2dc
梁保满
软件下载,学校,班级老师等报表导入...
|
59
60
61
62
63
|
<el-table
v-if="type == 1"
:data="tableData"
border
style="width: 100%"
|
9309dc5d
梁保满
任课老师接口完成
|
64
|
>
|
e371f2dc
梁保满
软件下载,学校,班级老师等报表导入...
|
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
|
<el-table-column prop="questionIndex" label="题号" align="center"
><template slot-scope="scoped"
>Q{{ scoped.row.questionIndex }}</template
></el-table-column
>
<el-table-column prop="questionType" label="题型" align="center">
<template slot-scope="scoped">{{
setSubPro(scoped.row.questionType)
}}</template>
</el-table-column>
<el-table-column
prop="answeredNum"
label="答题人数"
sortable
align="center"
></el-table-column>
<el-table-column
prop="correctAnswerNum"
label="答对人数"
sortable
align="center"
></el-table-column>
<el-table-column
prop="participationRate"
label="班级参与度"
sortable
align="center"
><template slot-scope="scoped"
>{{ scoped.row.participationRate }}%</template
></el-table-column
>
<el-table-column
prop="classCorrectRate"
label="班级正确率"
sortable
align="center"
><template slot-scope="scoped"
>{{ scoped.row.classCorrectRate }}%</template
></el-table-column
>
<el-table-column
prop="answerCorrectRate"
label="已答正确率"
sortable
align="center"
><template slot-scope="scoped"
>{{ scoped.row.answerCorrectRate }}%</template
></el-table-column
>
<el-table-column
prop="correctAnswer"
label="正确答案"
align="center"
>
<template slot-scope="scoped">{{
scoped.row.correctAnswer == 1
? "✓"
: scoped.row.correctAnswer == 2
? "✗"
: scoped.row.correctAnswer
}}</template></el-table-column
>
<el-table-column prop="fallible" label="干扰答案" align="center"
><template slot-scope="scoped">{{
scoped.row.fallible == 1
? "✓"
: scoped.row.fallible == 2
? "✗"
: scoped.row.fallible
}}</template></el-table-column
>
<!-- <el-table-column prop="screenshot" label="题干" align="center">
|
9309dc5d
梁保满
任课老师接口完成
|
137
138
|
<template slot-scope="scoped">
<el-image
|
8ea67428
梁保满
飞书bug
|
139
|
v-if="scoped.row.screenshot"
|
9309dc5d
梁保满
任课老师接口完成
|
140
141
142
143
|
style="width: 60px; height: 40px"
:src="scoped.row.screenshot"
:preview-src-list="[scoped.row.screenshot]"
>
|
8ea67428
梁保满
飞书bug
|
144
145
|
</el-image><span v-else>暂无</span></template
></el-table-column> -->
|
e371f2dc
梁保满
软件下载,学校,班级老师等报表导入...
|
146
147
148
149
150
151
|
</el-table>
<el-table
v-if="type == 2"
:data="tableData"
border
style="width: 100%"
|
9309dc5d
梁保满
任课老师接口完成
|
152
|
>
|
e371f2dc
梁保满
软件下载,学校,班级老师等报表导入...
|
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
|
<el-table-column
prop="studentCode"
label="学号"
align="center"
></el-table-column>
<el-table-column
prop="studentName"
label="姓名"
align="center"
></el-table-column>
<el-table-column
prop="answerTimes"
label="答题次数"
align="center"
></el-table-column>
<el-table-column
prop="consumingDuration"
label="答题耗时"
align="center"
><template slot-scope="scoped">{{
setDuration(scoped.row.consumingDuration)
}}</template></el-table-column
>
<el-table-column
prop="correctAnswerTimes"
label="答对次数"
align="center"
></el-table-column>
<el-table-column
prop="participationRate"
label="参与度"
sortable
align="center"
><template slot-scope="scoped"
>{{ scoped.row.participationRate }}%</template
></el-table-column
>
<el-table-column
prop="correctRate"
label="正确率"
sortable
align="center"
><template slot-scope="scoped"
>{{ scoped.row.correctRate }}%</template
></el-table-column
>
<el-table-column
prop="answerCorrectRate"
label="已答正确率"
sortable
align="center"
><template slot-scope="scoped"
>{{ scoped.row.answerCorrectRate }}%</template
></el-table-column
>
<el-table-column
v-for="(item, index) in optionsList"
:key="index"
:label="'Q' + (index + 1)"
align="center"
><template slot-scope="scoped">
<span :class="scoped.row['isRight' + index] ? '' : 'red'">{{
scoped.row["answer" + index]
}}</span>
</template>
</el-table-column>
</el-table>
<el-table
v-if="type == 3"
:data="tableData"
border
style="width: 100%"
|
9309dc5d
梁保满
任课老师接口完成
|
225
|
>
|
e371f2dc
梁保满
软件下载,学校,班级老师等报表导入...
|
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
|
<el-table-column
prop="studentCode"
label="学号"
align="center"
></el-table-column>
<el-table-column
prop="studentName"
label="姓名"
align="center"
></el-table-column>
<el-table-column
prop="rushAnswerTimes"
label="抢答成功次数"
sortable
align="center"
></el-table-column>
<el-table-column
prop="rushAnswerCorrectTimes"
label="答对次数"
sortable
align="center"
></el-table-column>
<el-table-column
prop="checkAnswerTimes"
label="抽答次数"
sortable
align="center"
></el-table-column>
<el-table-column
prop="checkAnswerCorrectTimes"
label="抽答答对次数"
sortable
align="center"
></el-table-column>
<el-table-column
prop="interactionsNum"
label="参与得分"
sortable
align="center"
></el-table-column>
<el-table-column
prop="interactionsCorrectNum"
label="对错得分"
sortable
align="center"
></el-table-column>
</el-table>
<el-table
v-if="type == 4"
:data="tableData"
border
style="width: 100%"
|
9309dc5d
梁保满
任课老师接口完成
|
278
|
>
|
e371f2dc
梁保满
软件下载,学校,班级老师等报表导入...
|
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
|
<el-table-column
prop="studentName"
label="姓名"
align="center"
></el-table-column>
<el-table-column
prop="checkInTime"
label="签到时间"
sortable
align="center"
></el-table-column>
<el-table-column
prop="makeUpTime"
label="补签时间"
sortable
align="center"
></el-table-column>
</el-table>
</div>
|
9309dc5d
梁保满
任课老师接口完成
|
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
|
<div class="pagination-box" v-show="type == 1">
<el-pagination
small=""
layout="total,prev, pager, next"
:hide-on-single-page="true"
:total="total"
@current-change="changePage"
:current-page="page"
:page-size="size"
>
</el-pagination>
</div>
<p class="down">
<el-button
@click="exportData"
|
533a17d8
梁保满
备题组卷添加批量设置答案
|
313
|
type="primary"
|
9309dc5d
梁保满
任课老师接口完成
|
314
315
316
317
318
|
plain
round
icon="fa fa-cloud-download"
>导出报表</el-button
>
|
e371f2dc
梁保满
软件下载,学校,班级老师等报表导入...
|
319
|
<el-button
|
3617eaad
梁保满
长水账号设置
|
320
|
v-if="!this.$store.getters.code"
|
e371f2dc
梁保满
软件下载,学校,班级老师等报表导入...
|
321
322
323
324
325
326
327
|
@click="print"
type="primary"
plain
round
icon="el-icon-printer"
>打印</el-button
>
|
255e2506
梁保满
飞书bug及优化
|
328
|
<!-- <el-button @click="edit" type="primary" round>修改答案</el-button> -->
|
9309dc5d
梁保满
任课老师接口完成
|
329
330
|
</p>
</div>
|
b769660c
梁保满
备课组题细节调整,随堂问列表页面开发完成
|
331
|
</div>
|
9309dc5d
梁保满
任课老师接口完成
|
332
333
334
335
336
337
338
339
|
<set-answer
:diaVisible="dialogVisible"
:questionList="form.questionList"
:paperId="form.id"
@saveSuccess="handleSuccess"
@cancel="cancel"
/>
|
b769660c
梁保满
备课组题细节调整,随堂问列表页面开发完成
|
340
|
</div>
|
4c4f7640
梁保满
路由表,路由前端文件
|
341
342
343
|
</template>
<script>
|
3617eaad
梁保满
长水账号设置
|
344
|
import { downloadFile, tablePrint } from "@/utils";
|
ee6e7628
梁保满
备题组卷借口数据对接调整
|
345
346
347
|
export default {
data() {
return {
|
9309dc5d
梁保满
任课老师接口完成
|
348
349
|
dialogVisible: false,
loading: false,
|
ee6e7628
梁保满
备题组卷借口数据对接调整
|
350
351
|
id: "",
type: 1,
|
9309dc5d
梁保满
任课老师接口完成
|
352
353
354
355
356
357
|
form: {
id: "",
questionList: [],
},
detail: {},
tableData: [],
|
255e2506
梁保满
飞书bug及优化
|
358
|
optionsList: [],
|
9309dc5d
梁保满
任课老师接口完成
|
359
360
361
|
page: 1,
size: 20,
total: 0,
|
ee6e7628
梁保满
备题组卷借口数据对接调整
|
362
363
364
365
|
};
},
created() {
this.id = this.$route.query.id;
|
9309dc5d
梁保满
任课老师接口完成
|
366
367
|
this._QueryData();
this.periodDetail();
|
ee6e7628
梁保满
备题组卷借口数据对接调整
|
368
369
|
},
methods: {
|
e371f2dc
梁保满
软件下载,学校,班级老师等报表导入...
|
370
371
372
|
print() {
tablePrint("print-content");
},
|
9309dc5d
梁保满
任课老师接口完成
|
373
374
375
376
377
|
setType(type) {
this.type = type;
this.page = 1;
this._QueryData();
},
|
e371f2dc
梁保满
软件下载,学校,班级老师等报表导入...
|
378
379
380
381
|
setDuration(times) {
let m = parseInt(times / 1000 / 60);
let s = parseInt((times / 1000) % 60);
let ms = times;
|
503b6063
梁保满
判断题答案选项
|
382
|
let aTime;
|
e371f2dc
梁保满
软件下载,学校,班级老师等报表导入...
|
383
384
385
386
387
388
389
390
391
|
if (times == 0) {
aTime = `0`;
} else {
if (m == 0 && s == 0) {
aTime = `${ms}毫秒`;
} else if (m == 0 && s != 0) {
aTime = `${s}秒`;
} else if (m != 0 && s != 0) {
aTime = `${m}分${s}秒`;
|
503b6063
梁保满
判断题答案选项
|
392
393
|
}
}
|
e371f2dc
梁保满
软件下载,学校,班级老师等报表导入...
|
394
|
return aTime;
|
d32e461c
梁保满
备题组卷
|
395
|
},
|
9309dc5d
梁保满
任课老师接口完成
|
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
|
setSubPro(type) {
let tit;
switch (type) {
case 2:
tit = "单选题";
break;
case 3:
tit = "多选题";
break;
case 4:
tit = "判断题";
break;
case 5:
tit = "主观题";
break;
default:
tit = "其他";
}
return tit;
},
cancel() {
this.dialogVisible = false;
},
handleSuccess() {
this.dialogVisible = false;
|
8ea67428
梁保满
飞书bug
|
421
|
this._QueryData();
|
9309dc5d
梁保满
任课老师接口完成
|
422
423
424
425
426
|
},
async edit() {
if (this.editLoading) return;
this.editLoading = true;
const { data, status, info } = await this.$request.periodQuestionList({
|
6d7bd862
梁保满
飞书bug
|
427
|
periodId: this.id,
|
9309dc5d
梁保满
任课老师接口完成
|
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
|
});
this.editLoading = false;
if (status === 0) {
this.form.id = this.id;
this.form.questionList = (data.list && [...data.list]) || [];
this.dialogVisible = true;
} else {
this.$message.error(info);
}
},
changePage(page) {
this.page = page;
this._QueryData();
},
async periodDetail() {
let { data, info, status } = await this.$request.periodDetail({
periodId: this.id,
});
if (status == 0) {
this.detail = { ...data };
|
255e2506
梁保满
飞书bug及优化
|
448
449
450
451
452
453
|
this.detail.duration = this.detail.duration
? (this.detail.duration / 60).toFixed(2)
: 0;
this.detail.consumingDuration = this.detail.consumingDuration
? (this.detail.consumingDuration / 60).toFixed(2)
: 0;
|
9309dc5d
梁保满
任课老师接口完成
|
454
455
456
457
|
} else {
this.$message.error(info);
}
},
|
ee6e7628
梁保满
备题组卷借口数据对接调整
|
458
|
async _QueryData() {
|
9309dc5d
梁保满
任课老师接口完成
|
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
|
const queryData =
this.type == 1
? this.$request.periodQuestionReport
: this.$request.periodStudentReport;
let query = {};
if (this.type == 2) {
query.type = 1;
} else if (this.type == 3) {
query.type = 2;
} else if (this.type == 4) {
query.type = 3;
}
this.loading = true;
let { data, info, status } = await queryData({
periodId: this.id,
page: this.page,
size: this.size,
...query,
|
ee6e7628
梁保满
备题组卷借口数据对接调整
|
477
|
});
|
9309dc5d
梁保满
任课老师接口完成
|
478
479
|
this.loading = false;
if (status === 0) {
|
255e2506
梁保满
飞书bug及优化
|
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
|
if (this.type == 2) {
let optionsList = [];
this.tableData = data?.list.map((item) => {
let params = {};
const detail = JSON.parse(item.detail);
if (detail.length > optionsList.length) {
optionsList = [...detail];
}
detail.map((items, index) => {
params["isRight" + index] = items.isRight;
params["answer" + index] =
items.answer == 1
? "✓"
: items.answer == 2
? "✗"
: items.answer;
});
return {
...item,
...params,
};
});
this.optionsList = [...optionsList];
} else {
|
e371f2dc
梁保满
软件下载,学校,班级老师等报表导入...
|
504
505
|
this.tableData = data?.list.sort((a, b) => {
return a.questionIndex - b.questionIndex;
|
255e2506
梁保满
飞书bug及优化
|
506
507
|
});
}
|
9309dc5d
梁保满
任课老师接口完成
|
508
509
510
511
512
513
514
|
this.total = data.count;
} else {
this.$message.error(info);
}
},
//导出
async exportData() {
|
255e2506
梁保满
飞书bug及优化
|
515
|
if (this.exportLoading == true) return;
|
9309dc5d
梁保满
任课老师接口完成
|
516
|
this.exportLoading = true;
|
255e2506
梁保满
飞书bug及优化
|
517
518
519
|
const data = await this.$request.exportPeriodReport({
periodId: this.id,
});
|
9309dc5d
梁保满
任课老师接口完成
|
520
521
|
this.exportLoading = false;
if (data) {
|
255e2506
梁保满
飞书bug及优化
|
522
523
524
525
|
let blob = new Blob([data], {
type: "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
});
downloadFile("随堂问-单课时报表.xlsx", blob);
|
9309dc5d
梁保满
任课老师接口完成
|
526
|
} else {
|
236b1f0e
梁保满
周末-飞书bug
|
527
|
this.$message.error("下载失败");
|
9309dc5d
梁保满
任课老师接口完成
|
528
|
}
|
ee6e7628
梁保满
备题组卷借口数据对接调整
|
529
530
531
|
},
},
};
|
4c4f7640
梁保满
路由表,路由前端文件
|
532
|
</script>
|
dbbfc6c5
梁保满
飞书优化及bug
|
533
534
535
536
537
538
539
540
541
542
|
<style>
div::-webkit-scrollbar {
width: 3px;
height: 10px;
}
div::-webkit-scrollbar-thumb {
border-radius: 10px;
background-color: #ccc;
}
</style>
|
b769660c
梁保满
备课组题细节调整,随堂问列表页面开发完成
|
543
|
<style lang="scss" scoped>
|
9309dc5d
梁保满
任课老师接口完成
|
544
545
546
547
548
549
|
.down {
padding-top: 20px;
width: 100%;
display: flex;
justify-content: space-between;
}
|
e371f2dc
梁保满
软件下载,学校,班级老师等报表导入...
|
550
551
552
|
.red {
color: #f30;
}
|
ee6e7628
梁保满
备题组卷借口数据对接调整
|
553
554
555
|
.page-content {
padding: 20px 20px 0;
}
|
b769660c
梁保满
备课组题细节调整,随堂问列表页面开发完成
|
556
557
|
.tab-box {
width: 800px;
|
ee6e7628
梁保满
备题组卷借口数据对接调整
|
558
|
margin: 0 auto 12px;
|
b769660c
梁保满
备课组题细节调整,随堂问列表页面开发完成
|
559
560
561
562
563
564
565
566
567
568
569
570
571
|
background: #f8f8f8;
border-radius: 20px;
display: flex;
.tab-item {
flex: 1;
height: 40px;
line-height: 40px;
text-align: center;
font-size: 16px;
color: #666;
font-weight: 500;
background: transparent;
border-radius: 20px;
|
ee6e7628
梁保满
备题组卷借口数据对接调整
|
572
|
cursor: pointer;
|
b769660c
梁保满
备课组题细节调整,随堂问列表页面开发完成
|
573
574
575
576
577
578
|
&.active {
background: #667ffd;
color: #fff;
}
}
}
|
ee6e7628
梁保满
备题组卷借口数据对接调整
|
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
|
.info {
display: flex;
flex-wrap: wrap;
border-left: 1px solid #e2e2e2;
border-top: 1px solid #e2e2e2;
margin-bottom: 12px;
.info-item {
width: 25%;
height: 50px;
box-sizing: border-box;
flex-shrink: 0;
background: #f8f8f8;
border-right: 1px solid #e2e2e2;
border-bottom: 1px solid #e2e2e2;
line-height: 50px;
text-align: center;
}
}
|
4c4f7640
梁保满
路由表,路由前端文件
|
597
|
</style>
|