Blame view

src/views/standard/test/index.vue 31.4 KB
4c4f7640   梁保满   路由表,路由前端文件
1
  <template>
76eb1bf6   梁保满   授课端版本管理,学生画像接口联调
2
    <div ref="main" class="page-container">
f356590c   阿宝   即时测列表,分析页面
3
4
5
6
      <back-box>
        <template slot="title">
          <span>即时测-数据报表</span>
        </template>
e5e4a3e6   梁保满   v1.3
7
8
        <template slot="btns">
          <el-tooltip
47a01cb6   梁保满   v1.3测试问题
9
            v-if="!code && gdClass"
e5e4a3e6   梁保满   v1.3
10
11
12
13
14
15
16
17
18
19
20
21
22
23
            effect="dark"
            content="已归档试卷"
            placement="bottom"
          >
            <el-button
              type="primary"
              icon="fa fa-archive"
              size="mini"
              plain
              circle
              @click="toArchiving"
            ></el-button>
          </el-tooltip>
        </template>
f356590c   阿宝   即时测列表,分析页面
24
25
26
      </back-box>
      <div class="answer-header">
        <div class="sel-box">
533a17d8   梁保满   备题组卷添加批量设置答案
27
28
29
30
31
32
          <el-select
            class="sel"
            v-model="query.classId"
            placeholder="选择班级"
            @change="changeclass"
          >
f356590c   阿宝   即时测列表,分析页面
33
34
35
36
37
38
39
40
41
42
43
44
            <el-option
              v-for="item in classList"
              :key="item.value"
              :label="item.label"
              :value="item.value"
            >
            </el-option>
          </el-select>
          <el-select
            v-if="role == 'ROLE_BANZHUREN'"
            class="sel"
            multiple
9309dc5d   梁保满   任课老师接口完成
45
            v-model="query.subjectNames"
45504a95   阿宝   即时测页面,以及小题修改答案
46
            placeholder="选择科目"
dbbfc6c5   梁保满   飞书优化及bug
47
            @change="changeSub"
f356590c   阿宝   即时测列表,分析页面
48
49
50
51
52
53
54
55
56
57
58
59
          >
            <el-option
              v-for="item in subjectList"
              :key="item.value"
              :label="item.label"
              :value="item.value"
            >
            </el-option>
          </el-select>
          <el-select
            v-else
            class="sel"
9309dc5d   梁保满   任课老师接口完成
60
            v-model="query.subjectNames"
45504a95   阿宝   即时测页面,以及小题修改答案
61
            placeholder="选择科目"
f356590c   阿宝   即时测列表,分析页面
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
          >
            <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">
9309dc5d   梁保满   任课老师接口完成
108
109
110
111
112
        <el-radio-group
          v-model="tabIndex"
          @change="changeTab"
          style="margin-bottom: 20px"
        >
e5e4a3e6   梁保满   v1.3
113
114
115
116
117
118
119
120
          <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>
f356590c   阿宝   即时测列表,分析页面
121
        </el-radio-group>
8ea67428   梁保满   飞书bug
122
        <div v-show="tabIndex == 1" v-loading="loading">
d32e461c   梁保满   备题组卷
123
          <el-table :data="tableData" border style="width: 100%">
f356590c   阿宝   即时测列表,分析页面
124
125
126
            <el-table-column
              prop="title"
              label="试卷名称"
10cf4c8c   梁保满   学生画像接口调整
127
              fixed
f356590c   阿宝   即时测列表,分析页面
128
129
130
              align="center"
            ></el-table-column>
            <el-table-column
9309dc5d   梁保满   任课老师接口完成
131
              prop="examPaperScore"
f356590c   阿宝   即时测列表,分析页面
132
133
              label="卷面分"
              align="center"
3617eaad   梁保满   长水账号设置
134
              width="68"
f356590c   阿宝   即时测列表,分析页面
135
            ></el-table-column>
8ea67428   梁保满   飞书bug
136
137
138
139
140
            <el-table-column prop="answeredNum" label="测验人数" align="center"
              ><template slot-scope="scoped">{{
                `${scoped.row.answeredNum}/${scoped.row.classPersonNum}`
              }}</template></el-table-column
            >
f356590c   阿宝   即时测列表,分析页面
141
            <el-table-column
9309dc5d   梁保满   任课老师接口完成
142
              prop="examStartTime"
f356590c   阿宝   即时测列表,分析页面
143
              label="测验时间"
a0d49348   梁保满   授课端管理添加设备编码,随堂问、即...
144
              width="100"
f356590c   阿宝   即时测列表,分析页面
145
146
              align="center"
            ></el-table-column>
8ea67428   梁保满   飞书bug
147
148
            <el-table-column prop="avgScore" label="班平均分" align="center"
              ><template slot-scope="scoped">{{
533a17d8   梁保满   备题组卷添加批量设置答案
149
150
                (scoped.row.subjectiveScore == scoped.row.examPaperScore ||
                  scoped.row.answerNum == 0) &&
255e2506   梁保满   飞书bug及优化
151
                scoped.row.recordStatus == 0
dbbfc6c5   梁保满   飞书优化及bug
152
                  ? "-"
8ea67428   梁保满   飞书bug
153
154
155
156
157
                  : scoped.row.avgScore
              }}</template></el-table-column
            >
            <el-table-column prop="highestScore" label="班最高分" align="center"
              ><template slot-scope="scoped">{{
533a17d8   梁保满   备题组卷添加批量设置答案
158
159
                (scoped.row.subjectiveScore == scoped.row.examPaperScore ||
                  scoped.row.answerNum == 0) &&
255e2506   梁保满   飞书bug及优化
160
                scoped.row.recordStatus == 0
dbbfc6c5   梁保满   飞书优化及bug
161
                  ? "-"
8ea67428   梁保满   飞书bug
162
163
164
165
166
                  : scoped.row.highestScore
              }}</template></el-table-column
            >
            <el-table-column prop="lowestScore" label="班最低分" align="center"
              ><template slot-scope="scoped">{{
533a17d8   梁保满   备题组卷添加批量设置答案
167
168
                (scoped.row.subjectiveScore == scoped.row.examPaperScore ||
                  scoped.row.answerNum == 0) &&
255e2506   梁保满   飞书bug及优化
169
                scoped.row.recordStatus == 0
dbbfc6c5   梁保满   飞书优化及bug
170
                  ? "-"
8ea67428   梁保满   飞书bug
171
172
173
                  : scoped.row.lowestScore
              }}</template></el-table-column
            >
f356590c   阿宝   即时测列表,分析页面
174
            <el-table-column
9309dc5d   梁保满   任课老师接口完成
175
              prop="excellenRate"
d32e461c   梁保满   备题组卷
176
              label="优秀数(率)"
f356590c   阿宝   即时测列表,分析页面
177
178
              sortable
              align="center"
d32e461c   梁保满   备题组卷
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
              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
f356590c   阿宝   即时测列表,分析页面
198
199
            >
            <el-table-column
9309dc5d   梁保满   任课老师接口完成
200
              prop="goodRate"
d32e461c   梁保满   备题组卷
201
              label="良好数(率)"
f356590c   阿宝   即时测列表,分析页面
202
203
              sortable
              align="center"
d32e461c   梁保满   备题组卷
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
              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>
8ea67428   梁保满   飞书bug
222
              </template></el-table-column
f356590c   阿宝   即时测列表,分析页面
223
224
            >
            <el-table-column
9309dc5d   梁保满   任课老师接口完成
225
              prop="passRate"
d32e461c   梁保满   备题组卷
226
              label="及格数(率)"
f356590c   阿宝   即时测列表,分析页面
227
228
              sortable
              align="center"
d32e461c   梁保满   备题组卷
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
              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>
8ea67428   梁保满   飞书bug
247
              </template></el-table-column
f356590c   阿宝   即时测列表,分析页面
248
249
            >
            <el-table-column
9309dc5d   梁保满   任课老师接口完成
250
              prop="failedRate"
d32e461c   梁保满   备题组卷
251
              label="不及格数(率)"
f356590c   阿宝   即时测列表,分析页面
252
253
              sortable
              align="center"
d32e461c   梁保满   备题组卷
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
              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
f356590c   阿宝   即时测列表,分析页面
273
274
275
            >
            <el-table-column label="操作" align="center">
              <template slot-scope="scoped">
8ea67428   梁保满   飞书bug
276
                <el-tooltip
533a17d8   梁保满   备题组卷添加批量设置答案
277
278
279
280
281
                  v-if="
                    scoped.row.answerNum != 0 ||
                    (scoped.row.recordStatus != 0 &&
                      scoped.row.subjectiveScore == scoped.row.examPaperScore)
                  "
8ea67428   梁保满   飞书bug
282
283
284
285
                  effect="dark"
                  content="详情"
                  placement="top"
                >
f356590c   阿宝   即时测列表,分析页面
286
287
288
289
290
291
292
293
                  <el-button
                    type="primary"
                    circle
                    size="mini"
                    icon="fa fa-arrow-right"
                    @click="linkTo(scoped.row)"
                  ></el-button>
                </el-tooltip>
8ea67428   梁保满   飞书bug
294
                <el-tooltip
533a17d8   梁保满   备题组卷添加批量设置答案
295
296
297
298
                  v-if="
                    scoped.row.answerNum == 0 &&
                    scoped.row.subjectiveScore != scoped.row.examPaperScore
                  "
8ea67428   梁保满   飞书bug
299
                  effect="dark"
255e2506   梁保满   飞书bug及优化
300
                  content="设置答案"
8ea67428   梁保满   飞书bug
301
302
                  placement="top"
                >
f356590c   阿宝   即时测列表,分析页面
303
304
305
306
307
308
309
310
                  <el-button
                    type="primary"
                    circle
                    size="mini"
                    icon="fa fa-file-text"
                    @click="edit(scoped.row)"
                  ></el-button>
                </el-tooltip>
8ea67428   梁保满   飞书bug
311
                <el-tooltip
533a17d8   梁保满   备题组卷添加批量设置答案
312
313
314
315
                  v-if="
                    scoped.row.subjectiveScore == scoped.row.examPaperScore &&
                    scoped.row.recordStatus == 0
                  "
8ea67428   梁保满   飞书bug
316
317
318
319
320
321
322
323
324
325
326
327
                  effect="dark"
                  content="导入主观题"
                  placement="top"
                >
                  <el-button
                    type="primary"
                    circle
                    size="mini"
                    icon="fa fa-cloud"
                    @click="uploadSJ(scoped.row)"
                  ></el-button>
                </el-tooltip>
f356590c   阿宝   即时测列表,分析页面
328
329
330
              </template>
            </el-table-column>
          </el-table>
9309dc5d   梁保满   任课老师接口完成
331
332
333
334
335
336
337
338
339
340
341
342
          <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>
f356590c   阿宝   即时测列表,分析页面
343
        </div>
8ea67428   梁保满   飞书bug
344
        <div v-show="tabIndex == 2" v-loading="loading">
503b6063   梁保满   判断题答案选项
345
346
347
348
349
350
          <el-empty
            :image-size="100"
            v-if="!tableData.length && loading == false"
            description="没有更多数据"
          ></el-empty>
          <template v-if="tableData.length && loading == false">
e371f2dc   梁保满   软件下载,学校,班级老师等报表导入...
351
352
353
354
355
356
357
            <div id="print-content">
              <el-table
                :max-height="tableMaxHeight"
                v-if="role == 'ROLE_JIAOSHI'"
                :data="tableData"
                border
                style="width: 100%"
236b1f0e   梁保满   周末-飞书bug
358
359
              >
                <el-table-column
e371f2dc   梁保满   软件下载,学校,班级老师等报表导入...
360
361
                  prop="studentCode"
                  label="学号"
236b1f0e   梁保满   周末-飞书bug
362
                  align="center"
e371f2dc   梁保满   软件下载,学校,班级老师等报表导入...
363
                  fixed
236b1f0e   梁保满   周末-飞书bug
364
365
                ></el-table-column>
                <el-table-column
e371f2dc   梁保满   软件下载,学校,班级老师等报表导入...
366
367
368
                  prop="studentName"
                  label="姓名"
                  fixed
236b1f0e   梁保满   周末-飞书bug
369
                  align="center"
3617eaad   梁保满   长水账号设置
370
371
372
373
374
375
376
                >
                  <template slot-scope="scoped"
                    ><span class="click-b" @click="toPortrait(scoped.row)">
                      {{ scoped.row.studentName }}
                    </span></template
                  ></el-table-column
                >
236b1f0e   梁保满   周末-飞书bug
377
                <el-table-column
236b1f0e   梁保满   周末-飞书bug
378
                  align="center"
e371f2dc   梁保满   软件下载,学校,班级老师等报表导入...
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
                  v-for="(item, index) in answerList"
                  :key="index"
                  :label="item.title"
                >
                  <el-table-column
                    :prop="'score' + index"
                    :label="index == 0 ? '总分' : '成绩'"
                    align="center"
                    :class-name="index % 2 == 0 ? 'bg' : ''"
                  ></el-table-column>
                  <el-table-column
                    :prop="'classRank' + index"
                    label="班名"
                    align="center"
                    :class-name="index % 2 == 0 ? 'bg' : ''"
                  ></el-table-column>
                </el-table-column>
              </el-table>
              <el-table
                v-else
                :data="tableData"
                :max-height="tableMaxHeight"
                border
                style="width: 100%"
              >
236b1f0e   梁保满   周末-飞书bug
404
                <el-table-column
e371f2dc   梁保满   软件下载,学校,班级老师等报表导入...
405
406
                  prop="studentCode"
                  label="学号"
236b1f0e   梁保满   周末-飞书bug
407
                  align="center"
e371f2dc   梁保满   软件下载,学校,班级老师等报表导入...
408
                  fixed
236b1f0e   梁保满   周末-飞书bug
409
                ></el-table-column>
e371f2dc   梁保满   软件下载,学校,班级老师等报表导入...
410
  
236b1f0e   梁保满   周末-飞书bug
411
                <el-table-column
e371f2dc   梁保满   软件下载,学校,班级老师等报表导入...
412
413
414
                  prop="studentName"
                  label="姓名"
                  fixed
236b1f0e   梁保满   周末-飞书bug
415
                  align="center"
e371f2dc   梁保满   软件下载,学校,班级老师等报表导入...
416
417
418
419
420
421
422
                >
                  <template slot-scope="scoped"
                    ><span class="click-b" @click="toPortrait(scoped.row)">
                      {{ scoped.row.studentName }}
                    </span></template
                  >
                </el-table-column>
236b1f0e   梁保满   周末-飞书bug
423
                <el-table-column
236b1f0e   梁保满   周末-飞书bug
424
                  align="center"
e371f2dc   梁保满   软件下载,学校,班级老师等报表导入...
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
                  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>
            </div>
236b1f0e   梁保满   周末-飞书bug
456
          </template>
f356590c   阿宝   即时测列表,分析页面
457
        </div>
236b1f0e   梁保满   周末-飞书bug
458
        <p class="down" v-if="tabIndex == 2 && tableData.length">
503b6063   梁保满   判断题答案选项
459
460
461
462
463
464
          <el-button
            type="primary"
            plain
            round
            icon="fa fa-cloud-download"
            @click="downExl"
f356590c   阿宝   即时测列表,分析页面
465
466
            >导出报表</el-button
          >
e371f2dc   梁保满   软件下载,学校,班级老师等报表导入...
467
          <el-button
3617eaad   梁保满   长水账号设置
468
            v-if="!this.$store.getters.code"
e371f2dc   梁保满   软件下载,学校,班级老师等报表导入...
469
470
471
472
473
474
475
            @click="print"
            type="primary"
            plain
            round
            icon="el-icon-printer"
            >打印</el-button
          >
f356590c   阿宝   即时测列表,分析页面
476
477
        </p>
      </div>
8ea67428   梁保满   飞书bug
478
      <el-dialog title="导入主观题分数" :visible.sync="diaUp" width="600">
533a17d8   梁保满   备题组卷添加批量设置答案
479
480
481
482
483
484
485
        <up-load
          :url="url"
          :examId="examId"
          @upSuccess="upSuccess"
          fileName="主观题分数"
          v-loading="loadingDown"
        >
8ea67428   梁保满   飞书bug
486
487
488
489
490
491
492
493
494
495
496
497
          <template slot="down">
            <p class="down-txt">
              第一步:下载模板并编辑完成学生分数
              <el-link type="danger" @click="downExcel">模板下载</el-link> 。
            </p>
            <p class="down-txt">第二步:上传完成编辑的模板文件并导入。</p>
          </template>
        </up-load>
        <div class="dialog-footer" slot="footer">
          <el-button @click="diaUp = false">取 消</el-button>
        </div>
      </el-dialog>
4c4f7640   梁保满   路由表,路由前端文件
498
499
500
501
    </div>
  </template>
  
  <script>
e371f2dc   梁保满   软件下载,学校,班级老师等报表导入...
502
  import { formatDate, downloadFile, tablePrint } from "utils";
a0d49348   梁保满   授课端管理添加设备编码,随堂问、即...
503
  import BusEvent from "@/utils/busEvent";
4c4f7640   梁保满   路由表,路由前端文件
504
  export default {
f356590c   阿宝   即时测列表,分析页面
505
506
    data() {
      return {
e5e4a3e6   梁保满   v1.3
507
        code: "",
47a01cb6   梁保满   v1.3测试问题
508
        gdClass: 0, //已归档班级数量
503b6063   梁保满   判断题答案选项
509
        exportLoading: false,
255e2506   梁保满   飞书bug及优化
510
        tableMaxHeight: 300,
f356590c   阿宝   即时测列表,分析页面
511
512
        role: "",
        loading: false,
8ea67428   梁保满   飞书bug
513
        diaUp: false,
533a17d8   梁保满   备题组卷添加批量设置答案
514
        loadingDown: false,
8ea67428   梁保满   飞书bug
515
516
        url: "/api_html/teaching/importSubjectiveScore",
        examId: "",
9309dc5d   梁保满   任课老师接口完成
517
518
519
520
        form: {
          id: "",
          title: "",
          examPaperScore: "",
aed43d3a   阿宝   即时测修改答案
521
        },
f356590c   阿宝   即时测列表,分析页面
522
523
524
525
        date: "", //今天-昨天-本周
        query: {
          //搜索条件
          classId: "",
9309dc5d   梁保满   任课老师接口完成
526
          subjectNames: "",
f356590c   阿宝   即时测列表,分析页面
527
528
529
530
          startDay: "",
          endDay: "",
          day: "",
        },
e5e4a3e6   梁保满   v1.3
531
        tabList: ["单卷测练报表", "阶段测练报表"],
f356590c   阿宝   即时测列表,分析页面
532
533
534
        classList: [], //班级
        subjectList: [], //科目
        tabIndex: 1, //选项卡
9309dc5d   梁保满   任课老师接口完成
535
536
537
538
539
        tableData: [],
        answerList: [], //设置多卷内容供tableStage表格数据用
        page: 1,
        size: 20,
        total: 0,
f356590c   阿宝   即时测列表,分析页面
540
541
542
      };
    },
    async created() {
e5e4a3e6   梁保满   v1.3
543
      this.code = localStorage.getItem("csCode") || "";
e371f2dc   梁保满   软件下载,学校,班级老师等报表导入...
544
545
546
      this.role =
        this.$store.getters.info.showRole ||
        this.$store.getters.info.permissions[0].role;
47a01cb6   梁保满   v1.3测试问题
547
      this._QueryClassList2();
f356590c   阿宝   即时测列表,分析页面
548
      await this._QueryClassList();
e5e4a3e6   梁保满   v1.3
549
550
551
      if (!this.query.classId) {
        return;
      }
f356590c   阿宝   即时测列表,分析页面
552
      await this._QuerySubjectList();
9309dc5d   梁保满   任课老师接口完成
553
      await this.setDate(1);
f356590c   阿宝   即时测列表,分析页面
554
555
556
557
558
559
      let startDay = this.query?.startDay;
      if (!startDay) {
        this.query.startDay = new Date();
        this.query.endDay = new Date();
      }
    },
a0d49348   梁保满   授课端管理添加设备编码,随堂问、即...
560
561
562
    activated() {
      const that = this;
      BusEvent.$on("keepAlive", async function () {
e5e4a3e6   梁保满   v1.3
563
        // if (that.$route.path == "/test") {
47a01cb6   梁保满   v1.3测试问题
564
565
566
567
568
569
570
571
572
573
574
575
576
        that.query.subjectNames = that.role == "ROLE_BANZHUREN" ? [] : "";
        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();
        }
e5e4a3e6   梁保满   v1.3
577
        // }
a0d49348   梁保满   授课端管理添加设备编码,随堂问、即...
578
579
      });
    },
f356590c   阿宝   即时测列表,分析页面
580
    methods: {
e371f2dc   梁保满   软件下载,学校,班级老师等报表导入...
581
      print() {
e5e4a3e6   梁保满   v1.3
582
        tablePrint("print-content", "即时测-" + this.tabList[this.tabIndex - 1]);
e371f2dc   梁保满   软件下载,学校,班级老师等报表导入...
583
584
585
      },
      changeSub(val) {
        //科目改变触发事件
dbbfc6c5   梁保满   飞书优化及bug
586
587
588
589
590
        let sub;
        if (val && val.length) {
          let leng = val.length - 1;
          sub = val[leng];
        }
255e2506   梁保满   飞书bug及优化
591
        console.log(val);
dbbfc6c5   梁保满   飞书优化及bug
592
593
594
595
        this.query.subjectNames = val.filter((item) => {
          return sub != "全部" ? item != "全部" : item == "全部";
        });
      },
e5e4a3e6   梁保满   v1.3
596
597
598
599
600
      toArchiving() {
        this.$router.push({
          path: "/testArchiving",
        });
      },
f356590c   阿宝   即时测列表,分析页面
601
602
603
604
605
606
      linkTo(obj) {
        //去详情
        this.$router.push({
          path: "/testAnalysis",
          query: {
            id: obj.id,
9309dc5d   梁保满   任课老师接口完成
607
608
            title: obj.title,
            score: obj.examPaperScore,
f356590c   阿宝   即时测列表,分析页面
609
610
611
          },
        });
      },
e371f2dc   梁保满   软件下载,学校,班级老师等报表导入...
612
      toPortrait(obj) {
f20c48c9   梁保满   集团管理员添加发卡记录,并添加报表导出
613
        //暂时不上线
e5e4a3e6   梁保满   v1.3
614
        return;
3617eaad   梁保满   长水账号设置
615
616
617
        if (this.$store.getters.code) {
          return;
        }
e371f2dc   梁保满   软件下载,学校,班级老师等报表导入...
618
        let subjectNames = [];
e5e4a3e6   梁保满   v1.3
619
620
621
622
        subjectNames =
          this.role == "ROLE_BANZHUREN"
            ? [...this.query["subjectNames"]]
            : [this.query["subjectNames"]];
e371f2dc   梁保满   软件下载,学校,班级老师等报表导入...
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
        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   梁保满   长水账号设置
638
            classId: this.query.classId,
10cf4c8c   梁保满   学生画像接口调整
639
            subjectNames: subjectNames.join(","),
e371f2dc   梁保满   软件下载,学校,班级老师等报表导入...
640
641
            studentName: obj.studentName,
            studentCode: obj.studentCode,
c065091a   梁保满   即时测跳转画像参数调整
642
643
            startDay: this.query.startDay,
            endDay: this.query.endDay,
e5e4a3e6   梁保满   v1.3
644
            date: this.date,
e371f2dc   梁保满   软件下载,学校,班级老师等报表导入...
645
646
647
648
649
          },
        });
      },
      uploadSJ(obj) {
        //导入开关
8ea67428   梁保满   飞书bug
650
651
652
        this.examId = obj.id;
        this.diaUp = true;
      },
f356590c   阿宝   即时测列表,分析页面
653
654
655
656
657
658
659
660
661
662
663
664
665
      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;
d32e461c   梁保满   备题组卷
666
            that.tabIndex = 1;
f356590c   阿宝   即时测列表,分析页面
667
668
669
670
671
672
673
            break;
          case 2:
            let day = new Date().getDay();
            if (day == 0) {
              //中国式星期天是一周的最后一天
              day = 7;
            }
8ea67428   梁保满   飞书bug
674
            day--;
f356590c   阿宝   即时测列表,分析页面
675
676
677
678
679
680
681
682
683
684
            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:
9309dc5d   梁保满   任课老师接口完成
685
            if (aMonth > 0 && aMonth < 4) {
e3b0e3e7   梁保满   季度时间格式调整
686
              aMonth = "1";
f356590c   阿宝   即时测列表,分析页面
687
            } else if (aMonth > 3 && aMonth < 7) {
e3b0e3e7   梁保满   季度时间格式调整
688
              aMonth = "4";
f356590c   阿宝   即时测列表,分析页面
689
            } else if (aMonth > 6 && aMonth < 10) {
e3b0e3e7   梁保满   季度时间格式调整
690
              aMonth = "7";
f356590c   阿宝   即时测列表,分析页面
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
            } 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 = "";
          }
        }
      },
9309dc5d   梁保满   任课老师接口完成
723
724
725
      changePage(page) {
        this.page = page;
        this._QueryData();
aed43d3a   阿宝   即时测修改答案
726
      },
f356590c   阿宝   即时测列表,分析页面
727
      edit(item) {
e371f2dc   梁保满   软件下载,学校,班级老师等报表导入...
728
729
730
731
732
733
734
735
        this.$router.push({
          path: "/examinationPaperEdit",
          query: {
            paperId: item.id,
            title: item.title,
            type: 2,
          },
        });
f356590c   阿宝   即时测列表,分析页面
736
      },
9309dc5d   梁保满   任课老师接口完成
737
      changeTab() {
255e2506   梁保满   飞书bug及优化
738
        this.tableMaxHeight = this.$refs.main.offsetHeight;
9309dc5d   梁保满   任课老师接口完成
739
740
        this.page = 1;
        this._QueryData();
aed43d3a   阿宝   即时测修改答案
741
      },
e5e4a3e6   梁保满   v1.3
742
743
744
      upSuccess(res) {
        //导入成功
        this.$message.success("导入成功");
533a17d8   梁保满   备题组卷添加批量设置答案
745
        this.diaUp = false;
255e2506   梁保满   飞书bug及优化
746
747
        this._QueryData();
      },
533a17d8   梁保满   备题组卷添加批量设置答案
748
749
750
751
      async changeclass() {
        await this._QuerySubjectList();
        this.page = 1;
        this._QueryData();
255e2506   梁保满   飞书bug及优化
752
      },
f356590c   阿宝   即时测列表,分析页面
753
      async changClazz() {
9309dc5d   梁保满   任课老师接口完成
754
        this.page = 1;
f356590c   阿宝   即时测列表,分析页面
755
        await this._QuerySubjectList();
9309dc5d   梁保满   任课老师接口完成
756
        await this._QueryData();
f356590c   阿宝   即时测列表,分析页面
757
      },
47a01cb6   梁保满   v1.3测试问题
758
759
760
761
762
763
764
765
766
767
768
769
      async _QueryClassList2() {
        const fetchClassList =
          this.role == "ROLE_BANZHUREN"
            ? this.$request.cTClassList
            : this.$request.tClassList;
        const { data, status, info } = await fetchClassList({ status: 1 });
        if (status === 0) {
          this.gdClass = data?.list?.length || 0;
        } else {
          this.$message.error(info);
        }
      },
f356590c   阿宝   即时测列表,分析页面
770
      async _QueryClassList() {
9309dc5d   梁保满   任课老师接口完成
771
772
773
774
775
        const fetchClassList =
          this.role == "ROLE_BANZHUREN"
            ? this.$request.cTClassList
            : this.$request.tClassList;
        const { data, status, info } = await fetchClassList();
f356590c   阿宝   即时测列表,分析页面
776
777
778
779
        if (status === 0) {
          this.classList = data.list.map((item) => {
            return {
              value: item.classId,
45504a95   阿宝   即时测页面,以及小题修改答案
780
              label: item.className,
f356590c   阿宝   即时测列表,分析页面
781
782
783
784
785
786
787
788
            };
          });
          this.query.classId = this.classList[0]?.value;
        } else {
          this.$message.error(info);
        }
      },
      async _QuerySubjectList() {
9309dc5d   梁保满   任课老师接口完成
789
790
791
792
793
794
        const fetchSubjectList =
          this.role == "ROLE_BANZHUREN"
            ? this.$request.cTSubjectList
            : this.$request.tSubjectList;
  
        const { data, status, info } = await fetchSubjectList({
f356590c   阿宝   即时测列表,分析页面
795
796
797
798
          classId: this.query.classId,
        });
        if (status === 0) {
          this.subjectList =
45504a95   阿宝   即时测页面,以及小题修改答案
799
            data.subjectNames?.map((item) => {
f356590c   阿宝   即时测列表,分析页面
800
              return {
45504a95   阿宝   即时测页面,以及小题修改答案
801
802
                value: item,
                label: item,
f356590c   阿宝   即时测列表,分析页面
803
804
              };
            }) || [];
aed43d3a   阿宝   即时测修改答案
805
          if (this.role == "ROLE_BANZHUREN") {
f356590c   阿宝   即时测列表,分析页面
806
            this.subjectList.unshift({
9309dc5d   梁保满   任课老师接口完成
807
              value: "全部",
f356590c   阿宝   即时测列表,分析页面
808
809
              label: "全部",
            });
9309dc5d   梁保满   任课老师接口完成
810
            this.query.subjectNames.push(this.subjectList[0]?.value);
aed43d3a   阿宝   即时测修改答案
811
          } else {
9309dc5d   梁保满   任课老师接口完成
812
            this.query.subjectNames = this.subjectList[0]?.value;
f356590c   阿宝   即时测列表,分析页面
813
          }
f356590c   阿宝   即时测列表,分析页面
814
815
816
817
818
        } else {
          this.$message.error(info);
        }
      },
      async _QueryData() {
c3cdce9c   梁保满   bug
819
820
821
        if (!this.query.classId) {
          return;
        }
9309dc5d   梁保满   任课老师接口完成
822
823
824
825
826
827
828
829
830
        this.tableData = [];
        if (this.tabIndex == 1) {
          this.examReportList();
        } else {
          this.phaseExamReport();
        }
      },
      //单卷测练
      async examReportList() {
f356590c   阿宝   即时测列表,分析页面
831
        this.loading = true;
f356590c   阿宝   即时测列表,分析页面
832
833
834
835
836
837
        let query = {};
        for (let key in this.query) {
          if (this.query[key] != "") {
            query[key] = this.query[key];
          }
        }
9309dc5d   梁保满   任课老师接口完成
838
839
840
841
        if (this.role != "ROLE_BANZHUREN") {
          query.subjectNames = [query.subjectNames];
        } else {
          if (
8ea67428   梁保满   飞书bug
842
            query["subjectNames"] &&
9309dc5d   梁保满   任课老师接口完成
843
844
845
846
847
848
849
            query["subjectNames"].length == 1 &&
            query["subjectNames"][0] == "全部"
          ) {
            query["subjectNames"] = this.subjectList.map((item) => {
              return item.value;
            });
            query["subjectNames"].shift();
dbbfc6c5   梁保满   飞书优化及bug
850
          }
255e2506   梁保满   飞书bug及优化
851
          if (!query["subjectNames"]) {
dbbfc6c5   梁保满   飞书优化及bug
852
853
            this.$message.warning("请选择科目");
            return;
9309dc5d   梁保满   任课老师接口完成
854
855
856
          }
        }
        const { data, status, info } = await this.$request.examReportList({
f356590c   阿宝   即时测列表,分析页面
857
          ...query,
9309dc5d   梁保满   任课老师接口完成
858
859
          page: this.page,
          size: this.size,
f356590c   阿宝   即时测列表,分析页面
860
861
862
        });
        this.loading = false;
        if (status === 0) {
9309dc5d   梁保满   任课老师接口完成
863
          this.tableData = (data?.list && [...data?.list]) || [];
76eb1bf6   梁保满   授课端版本管理,学生画像接口联调
864
          this.total = data?.count || 0;
9309dc5d   梁保满   任课老师接口完成
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
        } else {
          this.$message.error(info);
        }
      },
      //多卷测练
      async phaseExamReport() {
        this.loading = true;
        let query = {};
        for (let key in this.query) {
          if (this.query[key] != "") {
            if (key == "subjectNames" && this.role != "ROLE_BANZHUREN") {
              query["subjectName"] = this.query[key];
            } else {
              query[key] = this.query[key];
            }
          }
        }
        if (this.role == "ROLE_BANZHUREN") {
          if (
8ea67428   梁保满   飞书bug
884
885
            query["subjectNames"] &&
            query["subjectNames"]?.length == 1 &&
9309dc5d   梁保满   任课老师接口完成
886
887
888
889
890
            query["subjectNames"][0] == "全部"
          ) {
            query["subjectNames"] = this.subjectList.map((item) => {
              return item.value;
            });
8ea67428   梁保满   飞书bug
891
            query["subjectNames"]?.shift();
9309dc5d   梁保满   任课老师接口完成
892
893
894
895
896
897
898
899
900
901
902
903
          }
        }
        const phaseExamReport =
          this.role == "ROLE_BANZHUREN"
            ? this.$request.cTPhaseExamReport
            : this.$request.phaseExamReport;
        const { data, status, info } = await phaseExamReport({
          ...query,
        });
        this.loading = false;
        if (status === 0) {
          this.total = data.count;
8ea67428   梁保满   飞书bug
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
          if (this.role == "ROLE_BANZHUREN") {
            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 {
            let dataIdsList = [],
              dataList = [];
            data?.list.map((item) => {
              item.examList.map((items) => {
9309dc5d   梁保满   任课老师接口完成
929
930
931
932
                if (!dataIdsList.includes(items.title)) {
                  dataIdsList.push(items.title);
                  dataList.push(items);
                }
8ea67428   梁保满   飞书bug
933
              });
9309dc5d   梁保满   任课老师接口完成
934
            });
8ea67428   梁保满   飞书bug
935
936
937
938
939
940
941
            console.log(dataList);
            this.tableData = data?.list.map((item) => {
              let params = {};
              dataIdsList.map((ids, index) => {
                params["score" + index] = "--";
                params["classRank" + index] = "--";
                item.examList.map((items) => {
9309dc5d   梁保满   任课老师接口完成
942
943
944
945
                  if (items.title == ids) {
                    params["score" + index] = items.score;
                    params["classRank" + index] = items.classRank;
                  }
8ea67428   梁保满   飞书bug
946
                });
9309dc5d   梁保满   任课老师接口完成
947
              });
8ea67428   梁保满   飞书bug
948
949
950
951
              return {
                ...item,
                ...params,
              };
9309dc5d   梁保满   任课老师接口完成
952
            });
8ea67428   梁保满   飞书bug
953
954
            this.answerList = dataList;
          }
f356590c   阿宝   即时测列表,分析页面
955
956
957
958
        } else {
          this.$message.error(info);
        }
      },
e371f2dc   梁保满   软件下载,学校,班级老师等报表导入...
959
960
      async downExl() {
        //报表到处
503b6063   梁保满   判断题答案选项
961
        if (this.exportLoading == true) return;
236b1f0e   梁保满   周末-飞书bug
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
        let query = {};
        for (let key in this.query) {
          if (this.query[key] != "") {
            if (key == "subjectNames" && this.role != "ROLE_BANZHUREN") {
              query["subjectName"] = this.query[key];
            } else {
              query[key] = this.query[key];
            }
          }
        }
        if (this.role == "ROLE_BANZHUREN") {
          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;
          }
        }
503b6063   梁保满   判断题答案选项
988
989
990
991
        const exportPhaseExamReport =
          this.role == "ROLE_BANZHUREN"
            ? this.$request.cTExportPhaseExamReport
            : this.$request.exportPhaseExamReport;
236b1f0e   梁保满   周末-飞书bug
992
        this.exportLoading = true;
503b6063   梁保满   判断题答案选项
993
        const data = await exportPhaseExamReport({ ...query });
236b1f0e   梁保满   周末-飞书bug
994
        this.exportLoading = false;
a6eb85ed   梁保满   下载模版错误信息展示,图标根据环境切换
995
        if (data && !data.code) {
236b1f0e   梁保满   周末-飞书bug
996
997
998
          let blob = new Blob([data], {
            type: "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
          });
503b6063   梁保满   判断题答案选项
999
          downloadFile("即时测-阶段测练报表.xlsx", blob);
236b1f0e   梁保满   周末-飞书bug
1000
        } else {
a6eb85ed   梁保满   下载模版错误信息展示,图标根据环境切换
1001
          this.$message.error(data.info);
236b1f0e   梁保满   周末-飞书bug
1002
        }
503b6063   梁保满   判断题答案选项
1003
      },
e371f2dc   梁保满   软件下载,学校,班级老师等报表导入...
1004
1005
      async downExcel() {
        //模板下载
c2460294   梁保满   平台管理员接口联调
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
        this.loadingDown = true;
        let data = await this.$request.subjectiveScoreTemplate({
          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);
        }
      },
f356590c   阿宝   即时测列表,分析页面
1020
1021
    },
  };
4c4f7640   梁保满   路由表,路由前端文件
1022
1023
  </script>
  
9309dc5d   梁保满   任课老师接口完成
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
  <style>
  div::-webkit-scrollbar {
    width: 3px;
    height: 10px;
  }
  div::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #ccc;
  }
  </style>
f356590c   阿宝   即时测列表,分析页面
1034
  <style lang="scss" scoped>
9309dc5d   梁保满   任课老师接口完成
1035
1036
  .page-container {
    position: relative;
255e2506   梁保满   飞书bug及优化
1037
    height: 100%;
9309dc5d   梁保满   任课老师接口完成
1038
    &.active {
9309dc5d   梁保满   任课老师接口完成
1039
1040
1041
      overflow: hidden;
    }
  }
f356590c   阿宝   即时测列表,分析页面
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
  .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;
    }
  }
f356590c   阿宝   即时测列表,分析页面
1054
1055
1056
  .down {
    padding-top: 16px;
  }
e371f2dc   梁保满   软件下载,学校,班级老师等报表导入...
1057
1058
  .click-b {
    cursor: pointer;
c065091a   梁保满   即时测跳转画像参数调整
1059
    color: #409eff;
10cf4c8c   梁保满   学生画像接口调整
1060
    text-decoration: underline;
aed43d3a   阿宝   即时测修改答案
1061
  }
4c4f7640   梁保满   路由表,路由前端文件
1062
  </style>