Blame view

src/views/personal/test/index.vue 26.6 KB
77ebf04d   梁保满   个人版
1
2
3
4
5
6
  <template>
    <div ref="main" class="page-container">
      <back-box>
        <template slot="title">
          <span>即时测-数据报表</span>
        </template>
47a01cb6   梁保满   v1.3测试问题
7
        <template slot="btns">
1fa74ed0   梁保满   班级 不加归档入口, 班级、答题卡...
8
          <!-- <el-tooltip
47a01cb6   梁保满   v1.3测试问题
9
10
11
12
13
14
15
16
17
18
19
20
21
            v-if="!code && gdClass"
            effect="dark"
            content="已归档试卷"
            placement="bottom"
          >
            <el-button
              type="primary"
              icon="fa fa-archive"
              size="mini"
              plain
              circle
              @click="toPortrait"
            ></el-button>
1fa74ed0   梁保满   班级 不加归档入口, 班级、答题卡...
22
          </el-tooltip> -->
47a01cb6   梁保满   v1.3测试问题
23
        </template>
77ebf04d   梁保满   个人版
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
      </back-box>
      <div class="answer-header">
        <div class="sel-box">
          <el-select
            class="sel"
            v-model="query.classId"
            placeholder="选择班级"
            @change="changeclass"
          >
            <el-option
              v-for="item in classList"
              :key="item.value"
              :label="item.label"
              :value="item.value"
            >
            </el-option>
          </el-select>
          <el-select
            class="sel"
            multiple
            v-model="query.subjectNames"
            placeholder="选择科目"
            collapse-tags
            @change="changeSub"
          >
            <el-option
              v-for="item in subjectList"
              :key="item.value"
              :label="item.label"
              :value="item.value"
            >
            </el-option>
          </el-select>
          <div class="d1">
            <el-date-picker
              v-model="query.startDay"
              type="date"
              @change="handleChangeTimeStart"
              placeholder="选择日期时间"
              value-format="yyyy-MM-dd"
            >
            </el-date-picker>
            ~
            <el-date-picker
              v-model="query.endDay"
              type="date"
              placeholder="选择日期时间"
              @change="handleChangeTimeEnd"
              value-format="yyyy-MM-dd"
            >
            </el-date-picker>
          </div>
          <p class="p1">
            <span @click="setDate(1)" :class="[date == 1 ? 'active' : '', 's1']"
              >今天</span
            >
            <span @click="setDate(2)" :class="[date == 2 ? 'active' : '', 's1']"
              >本周</span
            >
            <span @click="setDate(3)" :class="[date == 3 ? 'active' : '', 's1']"
              >本月</span
            >
            <span @click="setDate(4)" :class="[date == 4 ? 'active' : '', 's1']"
              >本季度</span
            >
          </p>
          <el-button type="primary" round @click="_QueryData()">筛选</el-button>
        </div>
      </div>
      <div class="table-box">
        <el-radio-group
          v-model="tabIndex"
          @change="changeTab"
          style="margin-bottom: 20px"
        >
e5e4a3e6   梁保满   v1.3
99
100
101
102
103
104
105
106
          <template v-for="(item, index) in tabList">
            <el-radio-button
              v-if="index == 0 || query.startDay != query.endDay"
              :key="index"
              :label="index + 1"
              >{{ item }}</el-radio-button
            >
          </template>
77ebf04d   梁保满   个人版
107
108
109
110
111
112
        </el-radio-group>
        <div v-show="tabIndex == 1" v-loading="loading">
          <el-table :data="tableData" border style="width: 100%">
            <el-table-column
              prop="title"
              label="试卷名称"
10cf4c8c   梁保满   学生画像接口调整
113
              fixed
77ebf04d   梁保满   个人版
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
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
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
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
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
              align="center"
            ></el-table-column>
            <el-table-column
              prop="examPaperScore"
              label="卷面分"
              align="center"
              width="100"
            ></el-table-column>
            <el-table-column prop="answeredNum" label="测验人数" align="center"
              ><template slot-scope="scoped">{{
                `${scoped.row.answeredNum}/${scoped.row.classPersonNum}`
              }}</template></el-table-column
            >
            <el-table-column
              prop="examStartTime"
              label="测验时间"
              width="100"
              align="center"
            ></el-table-column>
            <el-table-column prop="avgScore" label="班平均分" align="center"
              ><template slot-scope="scoped">{{
                (scoped.row.subjectiveScore == scoped.row.examPaperScore ||
                  scoped.row.answerNum == 0) &&
                scoped.row.recordStatus == 0
                  ? "-"
                  : scoped.row.avgScore
              }}</template></el-table-column
            >
            <el-table-column prop="highestScore" label="班最高分" align="center"
              ><template slot-scope="scoped">{{
                (scoped.row.subjectiveScore == scoped.row.examPaperScore ||
                  scoped.row.answerNum == 0) &&
                scoped.row.recordStatus == 0
                  ? "-"
                  : scoped.row.highestScore
              }}</template></el-table-column
            >
            <el-table-column prop="lowestScore" label="班最低分" align="center"
              ><template slot-scope="scoped">{{
                (scoped.row.subjectiveScore == scoped.row.examPaperScore ||
                  scoped.row.answerNum == 0) &&
                scoped.row.recordStatus == 0
                  ? "-"
                  : scoped.row.lowestScore
              }}</template></el-table-column
            >
            <el-table-column
              prop="excellenRate"
              label="优秀数(率)"
              sortable
              align="center"
              width="110"
              class-name="p0"
              ><template slot-scope="scoped">
                <p
                  v-if="
                    (scoped.row.subjectiveScore == scoped.row.examPaperScore ||
                      scoped.row.answerNum == 0) &&
                    scoped.row.arecordStatus == 0
                  "
                >
                  "-"
                </p>
                <template v-else>
                  <p>{{ scoped.row.excellenNum }}</p>
                  <p v-if="scoped.row.excellenNum">
                    {{ `(${scoped.row.excellenRate}%)` }}
                  </p>
                </template>
              </template></el-table-column
            >
            <el-table-column
              prop="goodRate"
              label="良好数(率)"
              sortable
              align="center"
              width="110"
              class-name="p0"
              ><template slot-scope="scoped">
                <p
                  v-if="
                    (scoped.row.subjectiveScore == scoped.row.examPaperScore ||
                      scoped.row.answerNum == 0) &&
                    scoped.row.arecordStatus == 0
                  "
                >
                  "-"
                </p>
                <template v-else>
                  <p>{{ scoped.row.goodNum }}</p>
                  <p v-if="scoped.row.goodNum">
                    {{ `(${scoped.row.goodRate}%)` }}
                  </p>
                </template>
              </template></el-table-column
            >
            <el-table-column
              prop="passRate"
              label="及格数(率)"
              sortable
              align="center"
              width="110"
              class-name="p0"
              ><template slot-scope="scoped">
                <p
                  v-if="
                    (scoped.row.subjectiveScore == scoped.row.examPaperScore ||
                      scoped.row.answerNum == 0) &&
                    scoped.row.arecordStatus == 0
                  "
                >
                  "-"
                </p>
                <template v-else>
                  <p>{{ scoped.row.passNum }}</p>
                  <p v-if="scoped.row.passNum">
                    {{ `(${scoped.row.passRate}%)` }}
                  </p>
                </template>
              </template></el-table-column
            >
            <el-table-column
              prop="failedRate"
              label="不及格数(率)"
              sortable
              align="center"
              width="130"
              class-name="p0"
              ><template slot-scope="scoped">
                <p
                  v-if="
                    (scoped.row.subjectiveScore == scoped.row.examPaperScore ||
                      scoped.row.answerNum == 0) &&
                    scoped.row.arecordStatus == 0
                  "
                >
                  "-"
                </p>
                <template v-else>
                  <p>{{ scoped.row.failedNum }}</p>
                  <p v-if="scoped.row.failedNum">
                    {{ `(${scoped.row.failedRate}%)` }}
                  </p>
                </template>
              </template></el-table-column
            >
            <el-table-column label="操作" align="center">
              <template slot-scope="scoped">
                <el-tooltip
                  v-if="
                    scoped.row.answerNum != 0 ||
                    (scoped.row.recordStatus != 0 &&
                      scoped.row.subjectiveScore == scoped.row.examPaperScore)
                  "
                  effect="dark"
                  content="详情"
                  placement="top"
                >
                  <el-button
                    type="primary"
                    circle
                    size="mini"
                    icon="fa fa-arrow-right"
                    @click="linkTo(scoped.row)"
                  ></el-button>
                </el-tooltip>
                <el-tooltip
                  v-if="
                    scoped.row.answerNum == 0 &&
                    scoped.row.subjectiveScore != scoped.row.examPaperScore
                  "
                  effect="dark"
                  content="设置答案"
                  placement="top"
                >
                  <el-button
                    type="primary"
                    circle
                    size="mini"
                    icon="fa fa-file-text"
                    @click="edit(scoped.row)"
                  ></el-button>
                </el-tooltip>
                <el-tooltip
                  v-if="
                    scoped.row.subjectiveScore == scoped.row.examPaperScore &&
                    scoped.row.recordStatus == 0
                  "
                  effect="dark"
                  content="导入主观题"
                  placement="top"
                >
                  <el-button
                    type="primary"
                    circle
                    size="mini"
                    icon="fa fa-cloud"
                    @click="uploadSJ(scoped.row)"
                  ></el-button>
                </el-tooltip>
              </template>
            </el-table-column>
          </el-table>
          <div class="pagination-box">
            <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>
        </div>
        <div v-show="tabIndex == 2" v-loading="loading">
          <el-empty
            :image-size="100"
            v-if="!tableData.length && loading == false"
            description="没有更多数据"
          ></el-empty>
          <template v-if="tableData.length && loading == false">
            <el-table
              id="print-content"
              :data="tableData"
              :max-height="tableMaxHeight"
              border
              style="width: 100%"
            >
              <el-table-column
                prop="studentCode"
                label="学号"
                align="center"
                fixed
              ></el-table-column>
              <el-table-column
                prop="studentName"
                label="姓名"
                fixed
                align="center"
              >
                <template slot-scope="scoped"
                  ><span class="click-b" @click="toPortrait(scoped.row)">
                    {{ scoped.row.studentName }}
                  </span></template
                >
              </el-table-column>
              <el-table-column
                align="center"
                v-for="(item, index) in answerList"
                :key="index"
                :label="item"
              >
                <el-table-column
                  :prop="'examCount' + item"
                  label="测练数"
                  align="center"
                  :class-name="index % 2 == 0 ? 'bg' : ''"
                ></el-table-column>
                <el-table-column
                  :prop="'participationCount' + item"
                  label="参与数"
                  align="center"
                  :class-name="index % 2 == 0 ? 'bg' : ''"
                ></el-table-column>
                <el-table-column
                  :prop="'score' + item"
                  label="总分"
                  align="center"
                  :class-name="index % 2 == 0 ? 'bg' : ''"
                ></el-table-column>
                <el-table-column
                  :prop="'classRank' + item"
                  label="班名"
                  align="center"
                  :class-name="index % 2 == 0 ? 'bg' : ''"
                ></el-table-column>
              </el-table-column>
            </el-table>
          </template>
        </div>
        <p class="down" v-if="tabIndex == 2 && tableData.length">
          <el-button
            type="primary"
            plain
            round
            icon="fa fa-cloud-download"
            @click="downExl"
            >导出报表</el-button
          >
          <el-button
            @click="print"
            type="primary"
            plain
            round
            icon="el-icon-printer"
            >打印</el-button
          >
        </p>
      </div>
5cfb0264   梁保满   班级管理交互优化
415
      <el-dialog :close-on-click-modal="false" title="导入主观题分数" :visible.sync="diaUp" width="600">
6192eba8   梁保满   引用上传文件组件问题,备题组卷顶部
416
        <upload
77ebf04d   梁保满   个人版
417
418
419
420
421
422
423
424
425
426
427
428
429
          :url="url"
          :examId="examId"
          @upSuccess="upSuccess"
          fileName="主观题分数"
          v-loading="loadingDown"
        >
          <template slot="down">
            <p class="down-txt">
              第一步:下载模板并编辑完成学生分数
              <el-link type="danger" @click="downExcel">模板下载</el-link> 。
            </p>
            <p class="down-txt">第二步:上传完成编辑的模板文件并导入。</p>
          </template>
6192eba8   梁保满   引用上传文件组件问题,备题组卷顶部
430
        </upload>
77ebf04d   梁保满   个人版
431
432
433
434
435
436
437
438
439
440
441
442
443
        <div class="dialog-footer" slot="footer">
          <el-button @click="diaUp = false">取 消</el-button>
        </div>
      </el-dialog>
    </div>
  </template>
  
  <script>
  import { formatDate, downloadFile, tablePrint } from "utils";
  import BusEvent from "@/utils/busEvent";
  export default {
    data() {
      return {
47a01cb6   梁保满   v1.3测试问题
444
        gdClass: 0, //已归档班级数量
77ebf04d   梁保满   个人版
445
446
447
448
449
        exportLoading: false,
        tableMaxHeight: 300,
        loading: false,
        diaUp: false,
        loadingDown: false,
757a21e3   梁保满   上传成功提示成功数量
450
        url: "/api_html/personal/importSubjectiveScore",
77ebf04d   梁保满   个人版
451
452
453
454
455
456
457
458
459
460
        examId: "",
        date: "", //今天-昨天-本周
        query: {
          //搜索条件
          classId: "",
          subjectNames: [],
          startDay: "",
          endDay: "",
          day: "",
        },
e5e4a3e6   梁保满   v1.3
461
        tabList: ["单卷测练报表", "阶段测练报表"],
77ebf04d   梁保满   个人版
462
463
464
465
466
467
468
469
470
471
472
        classList: [], //班级
        subjectList: [], //科目
        tabIndex: 1, //选项卡
        tableData: [],
        answerList: [], //设置多卷内容供tableStage表格数据用
        page: 1,
        size: 20,
        total: 0,
      };
    },
    async created() {
47a01cb6   梁保满   v1.3测试问题
473
      this._QueryClassList2()
77ebf04d   梁保满   个人版
474
      await this._QueryClassList();
e5e4a3e6   梁保满   v1.3
475
476
477
      if (!this.query.classId) {
        return;
      }
77ebf04d   梁保满   个人版
478
479
480
481
482
483
484
485
486
487
488
      await this._QuerySubjectList();
      await this.setDate(1);
      let startDay = this.query?.startDay;
      if (!startDay) {
        this.query.startDay = new Date();
        this.query.endDay = new Date();
      }
    },
    activated() {
      const that = this;
      BusEvent.$on("keepAlive", async function () {
47a01cb6   梁保满   v1.3测试问题
489
490
491
492
493
494
495
496
497
498
499
500
        that._QueryClassList2()
        await that._QueryClassList();
        if (!that.query.classId) {
          return;
        }
        await that._QuerySubjectList();
        await that.setDate(1);
        let startDay = that.query?.startDay;
        if (!startDay) {
          that.query.startDay = new Date();
          that.query.endDay = new Date();
        }
77ebf04d   梁保满   个人版
501
502
503
      });
    },
    methods: {
47a01cb6   梁保满   v1.3测试问题
504
505
506
507
508
      toArchiving() {
        this.$router.push({
          path: "/testArchiving",
        });
      },
77ebf04d   梁保满   个人版
509
      print() {
e5e4a3e6   梁保满   v1.3
510
        tablePrint("print-content", "即时测-" + this.tabList[this.tabIndex - 1]);
77ebf04d   梁保满   个人版
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
      },
      changeSub(val) {
        let sub;
        if (val && val.length) {
          let leng = val.length - 1;
          sub = val[leng];
        }
        console.log(val);
        this.query.subjectNames = val.filter((item) => {
          return sub != "全部" ? item != "全部" : item == "全部";
        });
      },
      linkTo(obj) {
        //去详情
        this.$router.push({
          path: "/testAnalysis",
          query: {
            id: obj.id,
            title: obj.title,
            score: obj.examPaperScore,
          },
        });
      },
      toPortrait(obj) {
        let subjectNames = [];
c065091a   梁保满   即时测跳转画像参数调整
536
537
538
539
540
        subjectNames =
          this.role == "ROLE_BANZHUREN"
            ? [...this.query["subjectNames"]]
            : [this.query["subjectNames"]];
  
77ebf04d   梁保满   个人版
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
        if (
          this.query["subjectNames"] &&
          this.query["subjectNames"]?.length == 1 &&
          this.query["subjectNames"][0] == "全部"
        ) {
          subjectNames = this.subjectList.map((item) => {
            return item.value;
          });
          subjectNames?.shift();
        }
        //去学生画像
        this.$router.push({
          path: "/portraitDetail",
          query: {
            id: obj.studentId,
3617eaad   梁保满   长水账号设置
556
            classId: this.query.classId,
10cf4c8c   梁保满   学生画像接口调整
557
            subjectNames: subjectNames.join(","),
757a21e3   梁保满   上传成功提示成功数量
558
559
            studentName: obj.studentName,
            studentCode: obj.studentCode,
c065091a   梁保满   即时测跳转画像参数调整
560
561
562
            startDay: this.query.startDay,
            endDay: this.query.endDay,
            date: this.date,
77ebf04d   梁保满   个人版
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
          },
        });
      },
      uploadSJ(obj) {
        this.examId = obj.id;
        this.diaUp = true;
      },
      setDate(index) {
        const that = this;
        this.date = index == this.date ? "" : index;
        let aYear = new Date().getFullYear();
        let aMonth = new Date().getMonth() + 1;
        that.query.day = "";
        that.query.startDay = "";
        that.query.endDay = "";
        switch (index) {
          case 1:
            that.query.day = formatDate(new Date(), "yyyy-MM-dd");
            that.query.startDay = that.query.day;
            that.query.endDay = that.query.day;
            that.tabIndex = 1;
            break;
          case 2:
            let day = new Date().getDay();
            if (day == 0) {
              //中国式星期天是一周的最后一天
              day = 7;
            }
            day--;
            let aTime = new Date().getTime() - 24 * 60 * 60 * 1000 * day;
            that.query.startDay = formatDate(new Date(aTime), "yyyy-MM-dd");
            that.query.endDay = formatDate(new Date(), "yyyy-MM-dd");
            break;
          case 3:
            aMonth = aMonth < 10 ? "0" + aMonth : aMonth;
            that.query.startDay = `${aYear}-${aMonth}-01`;
            that.query.endDay = formatDate(new Date(), "yyyy-MM-dd");
            break;
          case 4:
            if (aMonth > 0 && aMonth < 4) {
              aMonth = "1";
            } else if (aMonth > 3 && aMonth < 7) {
              aMonth = "4";
            } else if (aMonth > 6 && aMonth < 10) {
              aMonth = "7";
            } else {
              aMonth = "10";
            }
  
            aMonth = aMonth < 10 ? "0" + aMonth : aMonth;
            that.query.startDay = `${aYear}-${aMonth}-01`;
            that.query.endDay = formatDate(new Date(), "yyyy-MM-dd");
            break;
        }
        this.page = 1;
        this._QueryData();
      },
      handleChangeTimeStart(val) {
        this.query.day = "";
        this.date = "";
        if (this.query.endDay) {
          if (new Date(val).getTime() > new Date(this.query.endDay).getTime()) {
            this.$message.error("任务结束时间不能任务开始时间前面,请重新设置");
            this.query.startDay = "";
          }
        }
      },
      handleChangeTimeEnd(val) {
        this.query.day = "";
        this.date = "";
        if (this.query.startDay) {
          if (new Date(val).getTime() < new Date(this.query.startDay).getTime()) {
            this.$message.error("任务结束时间不能任务开始时间前面,请重新设置");
            this.query.endDay = "";
          }
        }
      },
      changePage(page) {
        this.page = page;
        this._QueryData();
      },
      edit(item) {
        this.$router.push({
          path: "/examinationPaperEdit",
          query: {
            paperId: item.id,
            title: item.title,
            type: 2,
          },
        });
      },
      changeTab() {
        this.tableMaxHeight = this.$refs.main.offsetHeight;
        this.page = 1;
        this._QueryData();
      },
e5e4a3e6   梁保满   v1.3
659
660
661
      upSuccess(res) {
        //导入成功
        this.$message.success("导入成功");
77ebf04d   梁保满   个人版
662
663
664
665
666
667
668
669
670
671
        this.diaUp = false;
        this._QueryData();
      },
      async changeclass() {
        await this._QuerySubjectList();
        this.page = 1;
        this._QueryData();
      },
      async downExcel() {
        this.loadingDown = true;
03bce046   梁保满   个人版调整
672
        let data = await this.$request.pSubjectiveScoreTemplate({
77ebf04d   梁保满   个人版
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
          examId: this.examId,
        });
        this.loadingDown = false;
        if (data && !data.code) {
          let blob = new Blob([data], {
            type: "application/vnd.ms-excel;charset=utf-8",
          });
          downloadFile(`主观题模版.xlsx`, blob);
        } else {
          this.$message.error(data.info);
        }
      },
      async changClazz() {
        this.page = 1;
        await this._QuerySubjectList();
        await this._QueryData();
      },
47a01cb6   梁保满   v1.3测试问题
690
691
692
693
694
695
696
697
      async _QueryClassList2() {
        const { data, status, info } = await this.$request.pClassList({ status: 1 });
        if (status === 0) {
          this.gdClass = data?.list?.length || 0;
        } else {
          this.$message.error(info);
        }
      },
77ebf04d   梁保满   个人版
698
      async _QueryClassList() {
03bce046   梁保满   个人版调整
699
        const { data, status, info } = await this.$request.pClassList();
77ebf04d   梁保满   个人版
700
701
702
        if (status === 0) {
          this.classList = data.list.map((item) => {
            return {
e371f2dc   梁保满   软件下载,学校,班级老师等报表导入...
703
              value: item.id,
77ebf04d   梁保满   个人版
704
705
706
707
708
709
710
711
712
              label: item.className,
            };
          });
          this.query.classId = this.classList[0]?.value;
        } else {
          this.$message.error(info);
        }
      },
      async _QuerySubjectList() {
34b574e0   梁保满   细节优化
713
        if (!this.query.classId) return;
03bce046   梁保满   个人版调整
714
        const { data, status, info } = await this.$request.pSubjectList({
77ebf04d   梁保满   个人版
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
          classId: this.query.classId,
        });
        if (status === 0) {
          this.query.subjectNames = [];
          this.subjectList =
            data.subjectNames?.map((item) => {
              return {
                value: item,
                label: item,
              };
            }) || [];
          this.subjectList.unshift({
            value: "全部",
            label: "全部",
          });
          this.query.subjectNames.push(this.subjectList[0]?.value);
        } else {
          this.$message.error(info);
        }
      },
      async _QueryData() {
34b574e0   梁保满   细节优化
736
        if (!this.query.classId) return;
77ebf04d   梁保满   个人版
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
        this.tableData = [];
        if (this.tabIndex == 1) {
          this.examReportList();
        } else {
          this.phaseExamReport();
        }
      },
      //单卷测练
      async examReportList() {
        this.loading = true;
        let query = {};
        for (let key in this.query) {
          if (this.query[key] != "") {
            query[key] = this.query[key];
          }
        }
  
        if (
          query["subjectNames"] &&
          query["subjectNames"].length == 1 &&
          query["subjectNames"][0] == "全部"
        ) {
          query["subjectNames"] = this.subjectList.map((item) => {
            return item.value;
          });
          query["subjectNames"].shift();
        }
        if (!query["subjectNames"]) {
          this.$message.warning("请选择科目");
          return;
        }
03bce046   梁保满   个人版调整
768
        const { data, status, info } = await this.$request.pExamReportList({
77ebf04d   梁保满   个人版
769
770
771
772
773
774
775
          ...query,
          page: this.page,
          size: this.size,
        });
        this.loading = false;
        if (status === 0) {
          this.tableData = (data?.list && [...data?.list]) || [];
757a21e3   梁保满   上传成功提示成功数量
776
          this.total = data?.count || 0;
77ebf04d   梁保满   个人版
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
        } else {
          this.$message.error(info);
        }
      },
      //多卷测练
      async phaseExamReport() {
        this.loading = true;
        let query = {};
        for (let key in this.query) {
          if (this.query[key] != "") {
            query[key] = this.query[key];
          }
        }
  
        if (
          query["subjectNames"] &&
          query["subjectNames"]?.length == 1 &&
          query["subjectNames"][0] == "全部"
        ) {
          query["subjectNames"] = this.subjectList.map((item) => {
            return item.value;
          });
          query["subjectNames"]?.shift();
        }
        // 测试
        query["subjectName"] = "政治";
        delete query["subjectNames"];
        // end
03bce046   梁保满   个人版调整
805
        const { data, status, info } = await this.$request.pPhaseExamReport({
77ebf04d   梁保满   个人版
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
          ...query,
        });
        this.loading = false;
        if (status === 0) {
          this.total = data.count;
          let subjectName = [];
          this.tableData = data?.list.map((item) => {
            let params = {};
            item.dataList?.map((items, index) => {
              if (!subjectName.includes(items.subjectName)) {
                subjectName.push(items.subjectName);
              }
              params["examCount" + items.subjectName] = items.examCount;
              params["participationCount" + items.subjectName] =
                items.participationCount;
              params["score" + items.subjectName] = items.score;
              params["classRank" + items.subjectName] = items.classRank;
            });
            return {
              ...item,
              ...params,
            };
          });
          this.answerList = [...subjectName];
        } else {
          this.$message.error(info);
        }
      },
      async downExl() {
        if (this.exportLoading == true) return;
        let query = {};
        for (let key in this.query) {
          if (this.query[key] != "") {
            query[key] = this.query[key];
          }
        }
        if (
          query["subjectNames"] &&
          query["subjectNames"].length == 1 &&
          query["subjectNames"][0] == "全部"
        ) {
          query["subjectNames"] = this.subjectList.map((item) => {
            return item.value;
          });
          query["subjectNames"].shift();
        }
        if (!query["subjectNames"]) {
          this.$message.warning("请选择科目");
          return;
        }
03bce046   梁保满   个人版调整
856
        const data = await this.$request.pExportPhaseExamReport({ ...query });
77ebf04d   梁保满   个人版
857
        this.exportLoading = false;
a6eb85ed   梁保满   下载模版错误信息展示,图标根据环境切换
858
        if (data && !data.code) {
77ebf04d   梁保满   个人版
859
860
861
862
863
          let blob = new Blob([data], {
            type: "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
          });
          downloadFile("即时测-阶段测练报表.xlsx", blob);
        } else {
a6eb85ed   梁保满   下载模版错误信息展示,图标根据环境切换
864
          this.$message.error(data.info);
77ebf04d   梁保满   个人版
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
        }
      },
    },
  };
  </script>
  
  <style>
  div::-webkit-scrollbar {
    width: 3px;
    height: 10px;
  }
  div::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #ccc;
  }
  </style>
  <style lang="scss" scoped>
  .page-container {
    position: relative;
    height: 100%;
    &.active {
      overflow: hidden;
    }
  }
  .table-box {
    margin: 0 20px;
    padding: 16px;
    background: #f8f8f8;
    border-radius: 5px;
    :deep(.fa-arrow-right) {
      padding-left: 2px;
    }
    :deep(.fa-file-text) {
      padding-left: 2px;
    }
  }
  .click-b {
    cursor: pointer;
c065091a   梁保满   即时测跳转画像参数调整
903
    color: #409eff;
10cf4c8c   梁保满   学生画像接口调整
904
    text-decoration: underline;
77ebf04d   梁保满   个人版
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
  }
  .down {
    padding-top: 16px;
  }
  .edit-dia {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: #fff;
    overflow-y: auto;
    z-index: 10;
  }
  </style>