Blame view

src/views/ask/index.vue 25.2 KB
4c4f7640   梁保满   路由表,路由前端文件
1
  <template>
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
2
3
4
5
6
7
8
9
10
11
    <div>
      <back-box>
        <template slot="title">
          <span>问答-数据报表</span>
        </template>
      </back-box>
      <div class="answer-header">
        <div class="sel-box">
          <el-select
            class="sel"
d5987f6a   阿宝   组件修改答案
12
13
            v-model="query.classId"
            placeholder="选择班级"
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
14
15
16
17
18
19
20
            @change="changClazz"
          >
            <el-option
              v-for="item in classList"
              :key="item.value"
              :label="item.label"
              :value="item.value"
d5987f6a   阿宝   组件修改答案
21
            >
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
22
23
24
            </el-option>
          </el-select>
          <el-select
d5987f6a   阿宝   组件修改答案
25
            v-if="role == 'ROLE_BANZHUREN'"
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
26
27
            class="sel"
            multiple
9309dc5d   梁保满   任课老师接口完成
28
            v-model="query.subjectNames"
45504a95   阿宝   即时测页面,以及小题修改答案
29
            placeholder="选择科目"
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
30
31
32
33
34
35
36
37
38
39
40
41
42
            @change="_QueryData"
          >
            <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   梁保满   任课老师接口完成
43
            v-model="query.subjectNames"
45504a95   阿宝   即时测页面,以及小题修改答案
44
            placeholder="选择科目"
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
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
            @change="_QueryData"
          >
            <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']"
f356590c   阿宝   即时测列表,分析页面
79
              >本周</span
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
80
81
            >
            <span @click="setDate(3)" :class="[date == 3 ? 'active' : '', 's1']"
f356590c   阿宝   即时测列表,分析页面
82
83
84
85
              >本月</span
            >
            <span @click="setDate(4)" :class="[date == 4 ? 'active' : '', 's1']"
              >本季度</span
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
86
87
88
89
90
91
            >
          </p>
          <el-button type="primary" round @click="_QueryData()">筛选</el-button>
        </div>
      </div>
      <div class="table-box">
9309dc5d   梁保满   任课老师接口完成
92
93
94
95
96
        <el-radio-group
          v-model="tabIndex"
          @change="tabChange"
          style="margin-bottom: 20px"
        >
8ea67428   梁保满   飞书bug
97
98
99
          <el-radio-button :label="1" v-if="query.startDay != query.endDay"
            >单课时报表</el-radio-button
          >
9309dc5d   梁保满   任课老师接口完成
100
          <!-- <el-radio-button :label="2" v-if="this.role != 'ROLE_BANZHUREN'"
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
101
            >阶段问答报表</el-radio-button
9309dc5d   梁保满   任课老师接口完成
102
103
104
105
106
107
          > -->
          <el-radio-button :label="2" v-if="query.startDay != query.endDay"
            >阶段问答报表</el-radio-button
          >
          <el-radio-button :label="3" v-if="query.startDay != query.endDay"
            >阶段互动报表</el-radio-button
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
108
          >
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
109
        </el-radio-group>
9309dc5d   梁保满   任课老师接口完成
110
        <!-- <p class="table-tit" v-if="tabIndex != 1">
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
111
112
          <span>总课时数:10</span>
          <span>互动总数:22</span>
9309dc5d   梁保满   任课老师接口完成
113
        </p> -->
8ea67428   梁保满   飞书bug
114
        <div v-show="tabIndex == 1">
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
115
116
117
118
          <el-table
            :data="tableData"
            border
            style="width: 100%"
9309dc5d   梁保满   任课老师接口完成
119
            @sort-change="sortChange"
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
120
121
          >
            <el-table-column
9309dc5d   梁保满   任课老师接口完成
122
              prop="title"
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
123
124
125
126
              label="课时"
              align="center"
            ></el-table-column>
            <el-table-column
9309dc5d   梁保满   任课老师接口完成
127
              prop="questionNum"
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
128
129
130
131
132
              label="题目总数"
              align="center"
              width="100"
            ></el-table-column>
            <el-table-column
9309dc5d   梁保满   任课老师接口完成
133
              prop="startTime"
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
134
135
136
137
              label="上课时间"
              align="center"
            ></el-table-column>
            <el-table-column
9309dc5d   梁保满   任课老师接口完成
138
              prop="participationRate"
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
139
              label="参与度"
9309dc5d   梁保满   任课老师接口完成
140
              sortable="custom"
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
141
              align="center"
9309dc5d   梁保满   任课老师接口完成
142
143
144
145
146
            >
              <template slot-scope="scoped"
                >{{ scoped.row.participationRate }}%</template
              ></el-table-column
            >
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
147
            <el-table-column
9309dc5d   梁保满   任课老师接口完成
148
              prop="answerCorrectRate"
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
149
              label="已答总正确率"
9309dc5d   梁保满   任课老师接口完成
150
              sortable="custom"
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
151
152
              align="center"
            >
9309dc5d   梁保满   任课老师接口完成
153
154
155
              <template slot-scope="scoped"
                >{{ scoped.row.answerCorrectRate }}%</template
              >
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
156
157
            </el-table-column>
            <el-table-column
8ea67428   梁保满   飞书bug
158
              prop="classCorrectRate"
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
159
              label="班级总正确率"
9309dc5d   梁保满   任课老师接口完成
160
              sortable="custom"
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
161
              align="center"
9309dc5d   梁保满   任课老师接口完成
162
              ><template slot-scope="scoped"
8ea67428   梁保满   飞书bug
163
                >{{ scoped.row.classCorrectRate }}%</template
9309dc5d   梁保满   任课老师接口完成
164
165
              ></el-table-column
            >
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
166
167
            <el-table-column label="操作" align="center">
              <template slot-scope="scoped">
8ea67428   梁保满   飞书bug
168
169
170
171
172
173
                <el-tooltip
                  effect="dark"
                  v-if="scoped.row.answerNum == 0"
                  content="设置答案"
                  placement="top"
                >
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
174
175
176
177
                  <el-button
                    type="primary"
                    circle
                    size="mini"
8ea67428   梁保满   飞书bug
178
179
                    icon="fa fa-file-text"
                    @click="edit(scoped.row)"
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
180
181
                  ></el-button>
                </el-tooltip>
8ea67428   梁保满   飞书bug
182
                <el-tooltip v-else effect="dark" content="详情" placement="top">
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
183
184
185
186
                  <el-button
                    type="primary"
                    circle
                    size="mini"
8ea67428   梁保满   飞书bug
187
188
                    icon="fa fa-arrow-right"
                    @click="linkTo(scoped.row)"
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
189
190
191
192
193
194
                  ></el-button>
                </el-tooltip>
              </template>
            </el-table-column>
          </el-table>
        </div>
8ea67428   梁保满   飞书bug
195
        <div v-show="tabIndex == 2">
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
196
          <el-table
8ea67428   梁保满   飞书bug
197
            v-if="role == 'ROLE_JIAOSHI'"
9309dc5d   梁保满   任课老师接口完成
198
            :data="tableData"
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
199
200
            border
            style="width: 100%"
9309dc5d   梁保满   任课老师接口完成
201
            :default-sort="{ prop: 'answerTimes', order: 'descending' }"
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
202
203
          >
            <el-table-column
9309dc5d   梁保满   任课老师接口完成
204
              prop="studentCode"
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
205
206
207
208
              label="学号"
              align="center"
            ></el-table-column>
            <el-table-column
9309dc5d   梁保满   任课老师接口完成
209
              prop="studentName"
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
210
211
212
213
214
              label="姓名"
              align="center"
              width="100"
            ></el-table-column>
            <el-table-column
9309dc5d   梁保满   任课老师接口完成
215
              prop="answerTimes"
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
216
217
218
219
220
              label="累计答题次数"
              sortable
              align="center"
            ></el-table-column>
            <el-table-column
9309dc5d   梁保满   任课老师接口完成
221
              prop="correctAnswerTimes"
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
222
223
224
225
226
              label="累计答对次数"
              sortable
              align="center"
            ></el-table-column>
            <el-table-column
9309dc5d   梁保满   任课老师接口完成
227
              prop="participationRate"
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
228
229
230
              label="总参与度"
              sortable
              align="center"
9309dc5d   梁保满   任课老师接口完成
231
232
233
234
235
            >
              <template slot-scope="scoped"
                >{{ scoped.row.participationRate }}%</template
              ></el-table-column
            >
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
236
            <el-table-column
9309dc5d   梁保满   任课老师接口完成
237
              prop="correctRate"
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
238
239
240
              label="总正确率"
              sortable
              align="center"
9309dc5d   梁保满   任课老师接口完成
241
242
243
244
245
            >
              <template slot-scope="scoped"
                >{{ scoped.row.correctRate }}%</template
              ></el-table-column
            >
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
246
            <el-table-column
9309dc5d   梁保满   任课老师接口完成
247
              prop="answerCorrectRate"
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
248
249
250
251
              label="已答总正确率"
              sortable
              align="center"
            >
9309dc5d   梁保满   任课老师接口完成
252
253
254
              <template slot-scope="scoped"
                >{{ scoped.row.answerCorrectRate }}%</template
              >
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
255
256
            </el-table-column>
            <el-table-column
9309dc5d   梁保满   任课老师接口完成
257
              prop="classRank"
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
258
259
260
261
262
              label="总正确率班排名"
              sortable
              align="center"
            ></el-table-column>
          </el-table>
8ea67428   梁保满   飞书bug
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
          <el-table v-else :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"
              width="100"
            ></el-table-column>
            <el-table-column
              v-for="(item, index) in phaseOption"
              :key="index"
              :label="item"
              align="center"
            >
              <el-table-column align="center" :label="index==0?'总课时数':'课时数'" :prop="'periodCount'+item"> </el-table-column>
              <el-table-column align="center" :label="index==0?'总出题数':'出题数'" :prop="'questionNum'+item"> </el-table-column>
              <el-table-column align="center" :label="index==0?'总参与度':'参与度'" :prop="'participationRate'+item"> </el-table-column>
              <el-table-column align="center" :label="index==0?'总正确率':'正确率'" :prop="'correctRate'+item"> </el-table-column>
            </el-table-column>
          </el-table>
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
287
        </div>
8ea67428   梁保满   飞书bug
288
        <div v-show="tabIndex == 3">
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
289
          <el-table
8ea67428   梁保满   飞书bug
290
           v-if="role == 'ROLE_JIAOSHI'"
9309dc5d   梁保满   任课老师接口完成
291
            :data="tableData"
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
292
293
            border
            style="width: 100%"
9309dc5d   梁保满   任课老师接口完成
294
            :default-sort="{ prop: 'answerTimes', order: 'descending' }"
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
295
296
          >
            <el-table-column
9309dc5d   梁保满   任课老师接口完成
297
              prop="studentCode"
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
298
299
300
301
              label="学号"
              align="center"
            ></el-table-column>
            <el-table-column
9309dc5d   梁保满   任课老师接口完成
302
              prop="studentName"
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
303
304
305
306
307
              label="姓名"
              align="center"
              width="100"
            ></el-table-column>
            <el-table-column
9309dc5d   梁保满   任课老师接口完成
308
              prop="rushAnswerTimes"
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
309
310
311
312
313
              label="抢答成功次数"
              sortable
              align="center"
            ></el-table-column>
            <el-table-column
9309dc5d   梁保满   任课老师接口完成
314
315
              prop="rushAnswerCorrectTimes"
              label="抢答答对次数"
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
316
317
318
319
              sortable
              align="center"
            ></el-table-column>
            <el-table-column
9309dc5d   梁保满   任课老师接口完成
320
              prop="checkAnswerTimes"
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
321
322
323
324
325
              label="抽答次数"
              sortable
              align="center"
            ></el-table-column>
            <el-table-column
9309dc5d   梁保满   任课老师接口完成
326
              prop="checkAnswerCorrectTimes"
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
327
328
329
330
331
              label="抽答答对次数"
              sortable
              align="center"
            ></el-table-column>
            <el-table-column
8ea67428   梁保满   飞书bug
332
              prop="interactionsNum"
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
333
334
335
336
337
              label="参与得分"
              sortable
              align="center"
            ></el-table-column>
            <el-table-column
8ea67428   梁保满   飞书bug
338
              prop="interactionsCorrectNum"
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
339
340
341
342
343
              label="对错得分"
              sortable
              align="center"
            ></el-table-column>
          </el-table>
8ea67428   梁保满   飞书bug
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
          <el-table v-else :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"
              width="100"
            ></el-table-column>
            <el-table-column
              v-for="(item, index) in phaseInter"
              :key="index"
              :label="item"
              align="center"
            >
              <el-table-column align="center" :label="index==0?'参与分':'互动数'" :prop="'interactionsNum'+item"> </el-table-column>
              <el-table-column align="center" :label="index==0?'对错分':'参与数'" :prop="'interactionsCorrectNum'+item"> </el-table-column>
            </el-table-column>
          </el-table>
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
366
        </div>
9309dc5d   梁保满   任课老师接口完成
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
        <div class="pagination-box" v-show="tabIndex == 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" v-if="tabIndex == 3 || tabIndex == 2">
          <el-button
            @click="exportData"
            type="info"
            plain
            round
            icon="fa fa-cloud-download"
            >导出报表</el-button
          >
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
388
389
        </p>
      </div>
9309dc5d   梁保满   任课老师接口完成
390
391
392
393
394
395
396
      <set-answer
        :diaVisible="dialogVisible"
        :questionList="form.questionList"
        :paperId="form.id"
        @saveSuccess="handleSuccess"
        @cancel="cancel"
      />
4c4f7640   梁保满   路由表,路由前端文件
397
398
399
400
    </div>
  </template>
  
  <script>
9309dc5d   梁保满   任课老师接口完成
401
  import { formatDate, deepClone, downloadFile } from "utils";
4c4f7640   梁保满   路由表,路由前端文件
402
  export default {
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
403
404
405
406
    data() {
      return {
        role: "",
        loading: false,
9309dc5d   梁保满   任课老师接口完成
407
        dialogVisible: false,
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
408
        form: { questionList: [] },
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
409
410
411
        date: "", //今天-昨天-本周
        query: {
          //搜索条件
d5987f6a   阿宝   组件修改答案
412
          classId: "",
9309dc5d   梁保满   任课老师接口完成
413
          subjectNames: "",
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
414
415
416
417
          startDay: "",
          endDay: "",
          day: "",
        },
9309dc5d   梁保满   任课老师接口完成
418
419
420
421
422
        custom: {
          //单课时排序
          orderField: null,
          orderType: null,
        },
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
423
424
425
        classList: [], //班级
        subjectList: [], //科目
        tabIndex: 1, //选项卡
9309dc5d   梁保满   任课老师接口完成
426
        tableData: [],
8ea67428   梁保满   飞书bug
427
428
        phaseOption: [],//问答补充数据
        phaseInter:[],//互动补充数据
9309dc5d   梁保满   任课老师接口完成
429
430
431
        page: 1,
        size: 20,
        total: 0,
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
432
433
434
      };
    },
    async created() {
9309dc5d   梁保满   任课老师接口完成
435
436
437
438
      this.role = this.$store.getters.info.permissions.find(
        (item) => item.roleName == this.$store.getters.info.showRoleName
      )?.role;
      this.query.subjectNames = this.role == "ROLE_BANZHUREN" ? [] : "";
d5987f6a   阿宝   组件修改答案
439
440
      await this._QueryClassList();
      await this._QuerySubjectList();
9309dc5d   梁保满   任课老师接口完成
441
      await this.setDate(1);
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
      let startDay = this.query?.startDay;
      if (!startDay) {
        this.query.startDay = new Date();
        this.query.endDay = new Date();
      }
    },
    methods: {
      linkTo(obj) {
        //去详情
        this.$router.push({
          path: "/askAnalysis",
          query: {
            id: obj.id,
          },
        });
      },
9309dc5d   梁保满   任课老师接口完成
458
      setDate(index) {
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
459
460
        const that = this;
        this.date = index == this.date ? "" : index;
f356590c   阿宝   即时测列表,分析页面
461
462
        let aYear = new Date().getFullYear();
        let aMonth = new Date().getMonth() + 1;
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
463
464
465
466
467
468
469
470
471
        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;
            break;
f356590c   阿宝   即时测列表,分析页面
472
          case 2:
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
473
474
475
476
477
            let day = new Date().getDay();
            if (day == 0) {
              //中国式星期天是一周的最后一天
              day = 7;
            }
8ea67428   梁保满   飞书bug
478
            day--;
f356590c   阿宝   即时测列表,分析页面
479
480
481
482
483
484
485
486
487
488
            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   梁保满   任课老师接口完成
489
            if (aMonth > 0 && aMonth < 4) {
f356590c   阿宝   即时测列表,分析页面
490
491
492
493
494
495
496
497
498
499
500
501
              aMonth = "01";
            } else if (aMonth > 3 && aMonth < 7) {
              aMonth = "04";
            } else if (aMonth > 6 && aMonth < 10) {
              aMonth = "07";
            } else {
              aMonth = "10";
            }
  
            aMonth = aMonth < 10 ? "0" + aMonth : aMonth;
            that.query.startDay = `${aYear}-${aMonth}-01`;
            that.query.endDay = formatDate(new Date(), "yyyy-MM-dd");
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
502
            break;
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
        }
        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   梁保满   任课老师接口完成
527
528
529
530
531
532
533
534
535
536
537
538
539
540
      async edit(item) {
        if (this.editLoading) return;
        this.editLoading = true;
        const { data, status, info } = await this.$request.periodQuestionList({
          periodId: item.id,
        });
        this.editLoading = false;
        if (status === 0) {
          this.form.id = item.id;
          this.form.questionList = (data.list && [...data.list]) || [];
          this.dialogVisible = true;
        } else {
          this.$message.error(info);
        }
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
541
      },
9309dc5d   梁保满   任课老师接口完成
542
543
      cancel() {
        this.dialogVisible = false;
d5987f6a   阿宝   组件修改答案
544
      },
9309dc5d   梁保满   任课老师接口完成
545
546
      handleSuccess() {
        this.dialogVisible = false;
8ea67428   梁保满   飞书bug
547
        this._QueryData();
9309dc5d   梁保满   任课老师接口完成
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
      },
      tabChange() {
        this.page = 1;
        this._QueryData();
      },
      sortChange(obj) {
        this.custom.orderField =
          obj.prop == "participationRate"
            ? 1
            : obj.prop == "answerCorrectRate"
            ? 2
            : 3;
        this.custom.orderType = obj.order == "ascending" ? 0 : 1;
        this.page = 1;
        this._QueryData();
      },
      changePage(page) {
        this.page = page;
        this._QueryData();
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
567
568
569
      },
      async changClazz() {
        await this._QuerySubjectList();
9309dc5d   梁保满   任课老师接口完成
570
        // await this.setDate(1);
8ea67428   梁保满   飞书bug
571
        this._QueryData();
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
572
573
      },
      async _QueryClassList() {
9309dc5d   梁保满   任课老师接口完成
574
575
576
577
578
        const fetchClassList =
          this.role == "ROLE_BANZHUREN"
            ? this.$request.cTClassList
            : this.$request.tClassList;
        const { data, status, info } = await fetchClassList();
d5987f6a   阿宝   组件修改答案
579
        if (status === 0) {
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
580
581
          this.classList = data.list.map((item) => {
            return {
d5987f6a   阿宝   组件修改答案
582
              value: item.classId,
45504a95   阿宝   即时测页面,以及小题修改答案
583
              label: item.className,
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
584
585
            };
          });
d5987f6a   阿宝   组件修改答案
586
          this.query.classId = this.classList[0]?.value;
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
587
        } else {
d5987f6a   阿宝   组件修改答案
588
          this.$message.error(info);
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
589
590
591
        }
      },
      async _QuerySubjectList() {
9309dc5d   梁保满   任课老师接口完成
592
593
594
595
596
597
598
599
        const fetchSubjectList =
          this.role == "ROLE_BANZHUREN"
            ? this.$request.cTSubjectList
            : this.$request.tSubjectList;
  
        const { data, status, info } = await fetchSubjectList({
          classId: this.query.classId,
        });
d5987f6a   阿宝   组件修改答案
600
        if (status === 0) {
9309dc5d   梁保满   任课老师接口完成
601
602
603
604
605
606
607
          this.subjectList =
            data.subjectNames?.map((item) => {
              return {
                value: item,
                label: item,
              };
            }) || [];
d5987f6a   阿宝   组件修改答案
608
          if (this.role == "ROLE_BANZHUREN") {
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
609
            this.subjectList.unshift({
9309dc5d   梁保满   任课老师接口完成
610
              value: "全部",
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
611
612
              label: "全部",
            });
9309dc5d   梁保满   任课老师接口完成
613
614
615
            this.query.subjectNames.push(this.subjectList[0]?.value);
          } else {
            this.query.subjectNames = this.subjectList[0]?.value;
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
616
          }
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
617
        } else {
d5987f6a   阿宝   组件修改答案
618
          this.$message.error(info);
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
619
620
621
        }
      },
      async _QueryData() {
9309dc5d   梁保满   任课老师接口完成
622
623
624
625
626
627
628
629
630
631
        if (this.tabIndex == 1) {
          this.periodReportList();
        } else if (this.tabIndex == 2) {
          this.phaseAnswerReport();
        } else if (this.tabIndex == 3) {
          this.phaseInteractiveReport();
        }
      },
      //分页查询课时报表列表
      async periodReportList() {
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
632
        this.loading = true;
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
633
634
635
636
637
638
        let query = {};
        for (let key in this.query) {
          if (this.query[key] != "") {
            query[key] = this.query[key];
          }
        }
9309dc5d   梁保满   任课老师接口完成
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
        if (this.custom.orderField !== null) {
          query = { ...query, ...this.custom };
        }
        if (this.role != "ROLE_BANZHUREN") {
          query.subjectNames = [query.subjectNames];
        } else {
          if (
            query["subjectNames"].length == 1 &&
            query["subjectNames"][0] == "全部"
          ) {
            query["subjectNames"] = this.subjectList.map((item) => {
              return item.value;
            });
            query["subjectNames"].shift();
          }
        }
        const { data, status, info } = await this.$request.periodReportList({
          ...query,
          page: this.page,
          size: this.size,
        });
        this.loading = false;
        if (status === 0) {
          this.tableData = (data?.list && [...data?.list]) || [];
          this.total = data.count;
        } else {
          this.$message.error(info);
        }
      },
      //查询阶段问答报表
      async phaseAnswerReport() {
        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 (
            query["subjectNames"].length == 1 &&
            query["subjectNames"][0] == "全部"
          ) {
            query["subjectNames"] = this.subjectList.map((item) => {
              return item.value;
            });
            query["subjectNames"].shift();
          }
        }
        const phaseAnswerReport =
          this.role == "ROLE_BANZHUREN"
            ? this.$request.cTPhaseAnswerReport
            : this.$request.phaseAnswerReport;
  
        const { data, status, info } = await phaseAnswerReport({
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
698
699
700
          ...query,
        });
        this.loading = false;
d5987f6a   阿宝   组件修改答案
701
        if (status === 0) {
8ea67428   梁保满   飞书bug
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
          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["answerCorrectRate" + items.subjectName] = items.answerCorrectRate;
                params["correctRate" + items.subjectName] = items.correctRate;
                params["participationRate" + items.subjectName] = items.participationRate;
                params["periodCount" + items.subjectName] = items.periodCount;
                params["questionNum" + items.subjectName] = items.questionNum;
              });
              return {
                ...item,
                ...params,
              };
            });
            this.phaseOption = [...subjectName];
          } else {
            this.tableData = (data?.list && [...data?.list]) || [];
          }
9309dc5d   梁保满   任课老师接口完成
725
726
727
728
729
730
731
732
733
734
735
736
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
          this.total = data.count;
        } else {
          this.$message.error(info);
        }
      },
      //查询阶段互动报表
      async phaseInteractiveReport() {
        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 (
            query["subjectNames"].length == 1 &&
            query["subjectNames"][0] == "全部"
          ) {
            query["subjectNames"] = this.subjectList.map((item) => {
              return item.value;
            });
            query["subjectNames"].shift();
          }
        }
        const phaseInteractiveReport =
          this.role == "ROLE_BANZHUREN"
            ? this.$request.cTPhaseInteractiveReport
            : this.$request.phaseInteractiveReport;
  
        const { data, status, info } = await phaseInteractiveReport({
          ...query,
        });
        this.loading = false;
        if (status === 0) {
8ea67428   梁保满   飞书bug
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
          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["interactionsNum" + items.subjectName] = items.interactionsNum;
                params["interactionsCorrectNum" + items.subjectName] = items.interactionsCorrectNum;
              });
              return {
                ...item,
                ...params,
              };
            });
            this.phaseInter = [...subjectName];
          } else {
            this.tableData = (data?.list && [...data?.list]) || [];
          }
9309dc5d   梁保满   任课老师接口完成
784
785
786
787
788
789
790
791
792
793
794
795
796
          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("报表", data);
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
797
        } else {
d5987f6a   阿宝   组件修改答案
798
          this.$message.error(info);
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
799
800
801
802
        }
      },
    },
  };
4c4f7640   梁保满   路由表,路由前端文件
803
804
  </script>
  
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
805
806
807
808
809
810
811
812
813
814
815
816
817
  <style lang="scss" scoped>
  .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;
    }
  }
4c4f7640   梁保满   路由表,路由前端文件
818
  
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
819
820
821
822
823
824
825
826
827
828
829
  .fa-exchange {
    color: #667ffd;
    cursor: pointer;
    font-size: 16px;
    margin-left: 10px;
  }
  .dia-btn {
    border-radius: 20px;
    margin: 0 20px;
    padding: 10px 20px;
  }
d5987f6a   阿宝   组件修改答案
830
831
832
  .dia-tips {
    padding-bottom: 10px;
  }
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
833
834
835
836
  .dia-question-box {
    padding: 16px 16px 1px;
    background: #f8f8f8;
    border-radius: 10px;
d5987f6a   阿宝   组件修改答案
837
  
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
    .answer-s {
      width: 36px;
      height: 28px;
      cursor: pointer;
    }
  }
  .set-questions {
    display: flex;
    margin-bottom: 12px;
    width: 100%;
    .qs-num {
      flex-shrink: 0;
      margin-right: 10px;
    }
    .qs-options {
      flex: 1;
      .ipt {
        margin-bottom: 5px;
      }
    }
    .delButton {
      border-color: #ff6868;
      background: #ff6868 url("../../assets/images/arrow.png") no-repeat center;
      background-size: 19px;
      color: transparent;
    }
d5987f6a   阿宝   组件修改答案
864
    .ac {
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
865
866
      border-color: #ff6868;
      background: #ff6868;
d5987f6a   阿宝   组件修改答案
867
      color: #fff;
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
868
869
    }
  }
d5987f6a   阿宝   组件修改答案
870
871
  .down {
    padding-top: 16px;
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
872
  }
4c4f7640   梁保满   路由表,路由前端文件
873
  </style>