Blame view

src/views/ask/analysis.vue 13.2 KB
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
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
        <div v-loading="loading">
          <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 / 60 }}分钟</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">
              反馈时长:{{ detail.consumingDuration / 60 }}分钟
            </li>
          </ul>
          <el-table v-if="type == 1" :data="tableData" border style="width: 100%">
            <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
8ea67428   梁保满   飞书bug
80
              prop="participationRate"
9309dc5d   梁保满   任课老师接口完成
81
82
83
84
              label="班级参与度"
              sortable
              align="center"
              ><template slot-scope="scoped"
8ea67428   梁保满   飞书bug
85
                >{{ scoped.row.participationRate }}%</template
9309dc5d   梁保满   任课老师接口完成
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
              ></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"
8ea67428   梁保满   飞书bug
110
            > <template slot-scope="scoped">{{scoped.row.correctAnswer==1?"✓":scoped.row.correctAnswer==2?"✗":scoped.row.correctAnswer}}</template></el-table-column>
9309dc5d   梁保满   任课老师接口完成
111
112
113
114
            <el-table-column
              prop="fallible"
              label="干扰答案"
              align="center"
dbbfc6c5   梁保满   飞书优化及bug
115
            ><template slot-scope="scoped">{{scoped.row.fallible==1?"✓":scoped.row.fallible==2?"✗":scoped.row.fallible}}</template></el-table-column>
8ea67428   梁保满   飞书bug
116
            <!-- <el-table-column prop="screenshot" label="题干" align="center">
9309dc5d   梁保满   任课老师接口完成
117
118
              <template slot-scope="scoped">
                <el-image
8ea67428   梁保满   飞书bug
119
                  v-if="scoped.row.screenshot"
9309dc5d   梁保满   任课老师接口完成
120
121
122
123
                  style="width: 60px; height: 40px"
                  :src="scoped.row.screenshot"
                  :preview-src-list="[scoped.row.screenshot]"
                >
8ea67428   梁保满   飞书bug
124
125
                </el-image><span v-else>暂无</span></template
            ></el-table-column> -->
9309dc5d   梁保满   任课老师接口完成
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
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
225
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
          </el-table>
          <el-table v-if="type == 2" :data="tableData" border style="width: 100%">
            <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="correctAnswerNum"
              label="答题耗时"
              align="center"
            ></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>
          <el-table v-if="type == 3" :data="tableData" border style="width: 100%">
            <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%">
            <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 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"
              type="info"
              plain
              round
              icon="fa fa-cloud-download"
              >导出报表</el-button
            >
8ea67428   梁保满   飞书bug
269
            <el-button @click="edit" type="primary" round>修改答案</el-button>
9309dc5d   梁保满   任课老师接口完成
270
271
          </p>
        </div>
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
272
      </div>
9309dc5d   梁保满   任课老师接口完成
273
274
275
276
277
278
279
280
  
      <set-answer
        :diaVisible="dialogVisible"
        :questionList="form.questionList"
        :paperId="form.id"
        @saveSuccess="handleSuccess"
        @cancel="cancel"
      />
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
281
    </div>
4c4f7640   梁保满   路由表,路由前端文件
282
283
284
  </template>
  
  <script>
9309dc5d   梁保满   任课老师接口完成
285
  import { downloadFile } from "@/utils";
ee6e7628   梁保满   备题组卷借口数据对接调整
286
287
288
  export default {
    data() {
      return {
9309dc5d   梁保满   任课老师接口完成
289
290
        dialogVisible: false,
        loading: false,
ee6e7628   梁保满   备题组卷借口数据对接调整
291
292
        id: "",
        type: 1,
9309dc5d   梁保满   任课老师接口完成
293
294
295
296
297
298
299
300
301
        form: {
          id: "",
          questionList: [],
        },
        detail: {},
        tableData: [],
        page: 1,
        size: 20,
        total: 0,
ee6e7628   梁保满   备题组卷借口数据对接调整
302
303
304
305
      };
    },
    created() {
      this.id = this.$route.query.id;
9309dc5d   梁保满   任课老师接口完成
306
307
      this._QueryData();
      this.periodDetail();
ee6e7628   梁保满   备题组卷借口数据对接调整
308
309
    },
    methods: {
9309dc5d   梁保满   任课老师接口完成
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
      setType(type) {
        this.type = type;
        this.page = 1;
        this._QueryData();
      },
      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
340
        this._QueryData();
9309dc5d   梁保满   任课老师接口完成
341
342
343
344
345
      },
      async edit() {
        if (this.editLoading) return;
        this.editLoading = true;
        const { data, status, info } = await this.$request.periodQuestionList({
6d7bd862   梁保满   飞书bug
346
          periodId: this.id,
9309dc5d   梁保满   任课老师接口完成
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
        });
        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 };
        } else {
          this.$message.error(info);
        }
      },
ee6e7628   梁保满   备题组卷借口数据对接调整
371
      async _QueryData() {
9309dc5d   梁保满   任课老师接口完成
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
        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   梁保满   备题组卷借口数据对接调整
390
        });
9309dc5d   梁保满   任课老师接口完成
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
        this.loading = false;
        if (status === 0) {
          this.tableData = [...data?.list];
          this.total = data.count;
        } else {
          this.$message.error(info);
        }
      },
      //导出
      async exportData() {
        // if (this.exportLoading = true) return;
        this.exportLoading = true;
        const { data, status, info } = await this.$request.exportData();
        this.exportLoading = false;
        if (data) {
          downloadFile(this.detail.title + "报表", data);
        } else {
          this.$message.error(info);
        }
ee6e7628   梁保满   备题组卷借口数据对接调整
410
411
412
      },
    },
  };
4c4f7640   梁保满   路由表,路由前端文件
413
  </script>
dbbfc6c5   梁保满   飞书优化及bug
414
415
416
417
418
419
420
421
422
423
  <style>
  div::-webkit-scrollbar {
    width: 3px;
    height: 10px;
  }
  div::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #ccc;
  }
  </style>
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
424
  <style lang="scss" scoped>
9309dc5d   梁保满   任课老师接口完成
425
426
427
428
429
430
  .down {
    padding-top: 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
ee6e7628   梁保满   备题组卷借口数据对接调整
431
432
433
  .page-content {
    padding: 20px 20px 0;
  }
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
434
435
  .tab-box {
    width: 800px;
ee6e7628   梁保满   备题组卷借口数据对接调整
436
    margin: 0 auto 12px;
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
437
438
439
440
441
442
443
444
445
446
447
448
449
    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   梁保满   备题组卷借口数据对接调整
450
      cursor: pointer;
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
451
452
453
454
455
456
      &.active {
        background: #667ffd;
        color: #fff;
      }
    }
  }
ee6e7628   梁保满   备题组卷借口数据对接调整
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
  .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   梁保满   路由表,路由前端文件
475
  </style>