Blame view

src/views/ask/index.vue 18.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
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
            class="sel"
            multiple
            collapse-tags
            v-model="query.subjectId"
            placeholder=""
            @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"
            v-model="query.subjectId"
            placeholder=""
            @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   阿宝   即时测列表,分析页面
80
              >本周</span
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
81
82
            >
            <span @click="setDate(3)" :class="[date == 3 ? 'active' : '', 's1']"
f356590c   阿宝   即时测列表,分析页面
83
84
85
86
              >本月</span
            >
            <span @click="setDate(4)" :class="[date == 4 ? 'active' : '', 's1']"
              >本季度</span
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
87
88
89
90
91
92
93
94
            >
          </p>
          <el-button type="primary" round @click="_QueryData()">筛选</el-button>
        </div>
      </div>
      <div class="table-box">
        <el-radio-group v-model="tabIndex" style="margin-bottom: 20px">
          <el-radio-button :label="1">单课时报表</el-radio-button>
d5987f6a   阿宝   组件修改答案
95
          <el-radio-button :label="2" v-if="this.role != 'ROLE_BANZHUREN'"
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
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
            >阶段问答报表</el-radio-button
          >
          <el-radio-button :label="3">阶段互动报表</el-radio-button>
        </el-radio-group>
        <p class="table-tit" v-if="tabIndex != 1">
          <span>总课时数:10</span>
          <span>互动总数:22</span>
        </p>
        <div v-if="tabIndex == 1">
          <el-table
            :data="tableData"
            border
            style="width: 100%"
            :default-sort="{ prop: 'canyudu', order: 'descending' }"
          >
            <el-table-column
              prop="keshi"
              label="课时"
              align="center"
            ></el-table-column>
            <el-table-column
              prop="zongshu"
              label="题目总数"
              align="center"
              width="100"
            ></el-table-column>
            <el-table-column
              prop="shijian"
              label="上课时间"
              align="center"
            ></el-table-column>
            <el-table-column
              prop="canyudu"
              label="参与度"
              sortable
              align="center"
            > <template slot-scope="scoped">{{scoped.row.canyudu}}%</template></el-table-column>
            <el-table-column
              prop="zhengque"
              label="已答总正确率"
              sortable
              align="center"
            >
            <template slot-scope="scoped">{{scoped.row.zhengque}}%</template>
            </el-table-column>
            <el-table-column
              prop="allzheng"
              label="班级总正确率"
              sortable
              align="center"
            ><template slot-scope="scoped">{{scoped.row.allzheng}}%</template></el-table-column>
            <el-table-column label="操作" align="center">
              <template slot-scope="scoped">
                <el-tooltip effect="dark" content="详情" placement="left">
                  <el-button
                    type="primary"
                    circle
                    size="mini"
                    icon="fa fa-arrow-right"
                    @click="linkTo(scoped.row)"
                  ></el-button>
                </el-tooltip>
                <el-tooltip effect="dark" content="修改答案" placement="right">
                  <el-button
                    type="primary"
                    circle
                    size="mini"
                    icon="fa fa-file-text"
                    @click="edit(scoped.row)"
                  ></el-button>
                </el-tooltip>
              </template>
            </el-table-column>
          </el-table>
        </div>
        <div v-if="tabIndex == 2">
          <el-table
            :data="tableAsk"
            border
            style="width: 100%"
            :default-sort="{ prop: 'cishu', order: 'descending' }"
          >
            <el-table-column
              prop="xuehao"
              label="学号"
              align="center"
            ></el-table-column>
            <el-table-column
              prop="xingming"
              label="姓名"
              align="center"
              width="100"
            ></el-table-column>
            <el-table-column
              prop="cishu"
              label="累计答题次数"
              sortable
              align="center"
            ></el-table-column>
            <el-table-column
              prop="dadui"
              label="累计答对次数"
              sortable
              align="center"
            ></el-table-column>
            <el-table-column
              prop="canyudu"
              label="总参与度"
              sortable
              align="center"
            > <template slot-scope="scoped">{{scoped.row.canyudu}}%</template></el-table-column>
            <el-table-column
              prop="allzheng"
              label="总正确率"
              sortable
              align="center"
            > <template slot-scope="scoped">{{scoped.row.allzheng}}%</template></el-table-column>
            <el-table-column
              prop="yidazheng"
              label="已答总正确率"
              sortable
              align="center"
            >
            <template slot-scope="scoped">{{scoped.row.yidazheng}}%</template>
            </el-table-column>
            <el-table-column
              prop="zongpaiming"
              label="总正确率班排名"
              sortable
              align="center"
            ></el-table-column>
          </el-table>
        </div>
        <div v-if="tabIndex == 3">
          <el-table
            :data="tableAsk"
            border
            style="width: 100%"
            :default-sort="{ prop: 'cishu', order: 'descending' }"
          >
            <el-table-column
              prop="xuehao"
              label="学号"
              align="center"
            ></el-table-column>
            <el-table-column
              prop="xingming"
              label="姓名"
              align="center"
              width="100"
            ></el-table-column>
            <el-table-column
              prop="cishu"
              label="抢答成功次数"
              sortable
              align="center"
            ></el-table-column>
            <el-table-column
              prop="dadui"
              label="答对次数"
              sortable
              align="center"
            ></el-table-column>
            <el-table-column
              prop="chouda"
              label="抽答次数"
              sortable
              align="center"
            ></el-table-column>
            <el-table-column
              prop="choudadui"
              label="抽答答对次数"
              sortable
              align="center"
            ></el-table-column>
            <el-table-column
              prop="canyu"
              label="参与得分"
              sortable
              align="center"
            ></el-table-column>
            <el-table-column
              prop="duicuo"
              label="对错得分"
              sortable
              align="center"
            ></el-table-column>
          </el-table>
        </div>
        <p class="down" v-if="tabIndex == 3||tabIndex == 2">
          <el-button type="info" plain round icon="fa fa-cloud-download">导出报表</el-button>
        </p>
      </div>
d5987f6a   阿宝   组件修改答案
289
      <set-answer :diaVisible="dialogVisible" :questionList="form.questionList" :paperId="form.id" @saveSuccess="handleSuccess" @cancel="cancel"/>
4c4f7640   梁保满   路由表,路由前端文件
290
291
292
293
    </div>
  </template>
  
  <script>
d5987f6a   阿宝   组件修改答案
294
  import { formatDate, deepClone, checkAnswer } from "utils";
4c4f7640   梁保满   路由表,路由前端文件
295
  export default {
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
296
297
298
299
    data() {
      return {
        role: "",
        loading: false,
d5987f6a   阿宝   组件修改答案
300
        dialogVisible:false,
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
301
        form: { questionList: [] },
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
302
303
304
        date: "", //今天-昨天-本周
        query: {
          //搜索条件
d5987f6a   阿宝   组件修改答案
305
          classId: "",
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
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
          subjectId: "",
          startDay: "",
          endDay: "",
          day: "",
        },
        classList: [], //班级
        subjectList: [], //科目
        tabIndex: 1, //选项卡
        tableData: [
          //单课时报表
          {
            id: 1,
            keshi: "课时一",
            zongshu: 10,
            shijian: "2022-11-9 21:30至22:30",
            canyudu: 60,
            zhengque: 90,
            allzheng: 80,
            questionList: [
              {
                questionTitle: "f",
                score: 1,
                subQuestions: [
                  {
                    questionIndex: 1,
                    questionType: 2,
                    score: 1,
                    partScore: 0,
                    selectNum: 4,
                    answerOptions: ["A", "B", "C", "D"],
                    correctAnswer: "B",
                  },
                  {
                    questionIndex: 2,
                    questionType: 2,
                    score: 1,
                    partScore: 0,
                    selectNum: 4,
                    answerOptions: ["A", "B", "C", "D", "E", "F"],
                    correctAnswer: "A",
                  },
                  {
                    questionIndex: 2,
                    questionType: 3,
                    score: 1,
                    partScore: 0,
                    selectNum: 4,
                    answerOptions: ["A", "B", "C", "D", "E", "F"],
                    correctAnswer: "AB",
                  },
                  {
                    questionIndex: 2,
                    questionType: 3,
                    score: 1,
                    partScore: 0,
                    selectNum: 4,
                    answerOptions: ["A", "B", "C", "D", "E", "F"],
                    correctAnswer: "AB",
                  },
                  {
                    questionIndex: 3,
                    questionType: 4,
                    score: 1,
                    partScore: 0,
                    selectNum: 0,
                    answerOptions: [],
                    correctAnswer: "1",
                  },
                ],
              },
            ],
          },
          {
            id: 2,
            keshi: "课时二",
            zongshu: 8,
            shijian: "2022-11-10 21:30至22:30",
            canyudu: 70,
            zhengque: 80,
            allzheng: 60,
            questionList: [
              {
                questionTitle: "a",
                score: 1,
                subQuestions: [
                  {
                    questionIndex: 2,
                    questionType: 3,
                    score: 1,
                    partScore: 0,
                    selectNum: 4,
                    answerOptions: ["A", "B", "C", "D"],
                    correctAnswer: "A,C",
                  },
                ],
              },
            ],
          },
        ],
d5987f6a   阿宝   组件修改答案
405
        tableAsk: [
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
406
407
408
409
410
411
412
          {
            xuehao: 1,
            xingming: "丁芳菲",
            cishu: 5,
            dadui: 60,
            canyudu: 90,
            allzheng: 80,
d5987f6a   阿宝   组件修改答案
413
414
            yidazheng: 50,
            zongpaiming: 5,
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
415
416
417
418
419
420
421
422
          },
          {
            xuehao: 1,
            xingming: "丁芳菲2",
            cishu: 3,
            dadui: 20,
            canyudu: 80,
            allzheng: 60,
d5987f6a   阿宝   组件修改答案
423
424
425
            yidazheng: 65,
            zongpaiming: 4,
          },
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
426
        ],
d5987f6a   阿宝   组件修改答案
427
        tableStage: [
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
428
429
430
431
432
433
434
          {
            xuehao: 1,
            xingming: "丁芳菲",
            cishu: 5,
            dadui: 60,
            chouda: 90,
            choudadui: 80,
d5987f6a   阿宝   组件修改答案
435
436
437
438
            canyu: 50,
            duicuo: 5,
          },
        ],
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
439
440
441
      };
    },
    async created() {
d5987f6a   阿宝   组件修改答案
442
443
      this.role = this.$store.getters.info.permissions[0]?.role||"";
      if (this.role == "ROLE_BANZHUREN") {
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
444
445
        this.query.subjectId = [];
      }
d5987f6a   阿宝   组件修改答案
446
447
      await this._QueryClassList();
      await this._QuerySubjectList();
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
      // await this.setDate(1);
      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,
          },
        });
      },
d5987f6a   阿宝   组件修改答案
465
      
f356590c   阿宝   即时测列表,分析页面
466
     setDate(index) {
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
467
468
        const that = this;
        this.date = index == this.date ? "" : index;
f356590c   阿宝   即时测列表,分析页面
469
470
        let aYear = new Date().getFullYear();
        let aMonth = new Date().getMonth() + 1;
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
471
472
473
474
475
476
477
478
479
        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   阿宝   即时测列表,分析页面
480
          case 2:
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
481
482
483
484
485
            let day = new Date().getDay();
            if (day == 0) {
              //中国式星期天是一周的最后一天
              day = 7;
            }
f356590c   阿宝   即时测列表,分析页面
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
            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 > 1 && aMonth < 4) {
              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   梁保满   备课组题细节调整,随堂问列表页面开发完成
509
            break;
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
        }
        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 = "";
          }
        }
      },
d5987f6a   阿宝   组件修改答案
534
535
536
      edit(item) {
        this.form = deepClone(item);
        this.dialogVisible = true;
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
537
      },
d5987f6a   阿宝   组件修改答案
538
539
540
541
542
543
      cancel(){
        this.dialogVisible = false
      },
      handleSuccess(){
        this.dialogVisible = false
        this._QueryData()
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
544
545
546
547
548
549
      },
      async changClazz() {
        await this._QuerySubjectList();
        await this.setDate(1);
      },
      async _QueryClassList() {
d5987f6a   阿宝   组件修改答案
550
551
        const { data, status, info } = await this.$request.fetchClassList();
        if (status === 0) {
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
552
553
          this.classList = data.list.map((item) => {
            return {
d5987f6a   阿宝   组件修改答案
554
              value: item.classId,
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
555
556
557
              label: item.clazzName,
            };
          });
d5987f6a   阿宝   组件修改答案
558
          this.query.classId = this.classList[0]?.value;
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
559
        } else {
d5987f6a   阿宝   组件修改答案
560
          this.$message.error(info);
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
561
562
563
        }
      },
      async _QuerySubjectList() {
d5987f6a   阿宝   组件修改答案
564
565
        const { data, status, info } = await this.$request.fetchSubjectList(
          {classId: this.query.classId,}
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
566
        );
d5987f6a   阿宝   组件修改答案
567
568
        if (status === 0) {
          this.subjectList = data.list?.map((item) => {
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
569
570
571
572
            return {
              value: item.subjectId,
              label: item.subjectName,
            };
d5987f6a   阿宝   组件修改答案
573
574
          })||[];
          if (this.role == "ROLE_BANZHUREN") {
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
575
576
577
578
579
            this.subjectList.unshift({
              value: "",
              label: "全部",
            });
          }
d5987f6a   阿宝   组件修改答案
580
          this.query.subjectId = this.subjectList[0]?.value;
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
581
        } else {
d5987f6a   阿宝   组件修改答案
582
          this.$message.error(info);
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
583
584
585
586
587
588
589
590
591
592
593
        }
      },
      async _QueryData() {
        this.loading = true;
        //多课时对比
        let query = {};
        for (let key in this.query) {
          if (this.query[key] != "") {
            query[key] = this.query[key];
          }
        }
d5987f6a   阿宝   组件修改答案
594
        const { data, status, info } = await this.$request.fetchQuizList({
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
595
596
597
          ...query,
        });
        this.loading = false;
d5987f6a   阿宝   组件修改答案
598
        if (status === 0) {
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
599
        } else {
d5987f6a   阿宝   组件修改答案
600
          this.$message.error(info);
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
601
602
603
604
        }
      },
    },
  };
4c4f7640   梁保满   路由表,路由前端文件
605
606
  </script>
  
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
607
608
609
610
611
612
613
614
615
616
617
618
619
  <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   梁保满   路由表,路由前端文件
620
  
d5987f6a   阿宝   组件修改答案
621
  
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
622
623
624
625
626
627
628
629
630
631
632
  .fa-exchange {
    color: #667ffd;
    cursor: pointer;
    font-size: 16px;
    margin-left: 10px;
  }
  .dia-btn {
    border-radius: 20px;
    margin: 0 20px;
    padding: 10px 20px;
  }
d5987f6a   阿宝   组件修改答案
633
634
635
  .dia-tips {
    padding-bottom: 10px;
  }
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
636
637
638
639
  .dia-question-box {
    padding: 16px 16px 1px;
    background: #f8f8f8;
    border-radius: 10px;
d5987f6a   阿宝   组件修改答案
640
  
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
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
    .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   阿宝   组件修改答案
667
    .ac {
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
668
669
      border-color: #ff6868;
      background: #ff6868;
d5987f6a   阿宝   组件修改答案
670
      color: #fff;
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
671
672
    }
  }
d5987f6a   阿宝   组件修改答案
673
674
  .down {
    padding-top: 16px;
b769660c   梁保满   备课组题细节调整,随堂问列表页面开发完成
675
  }
4c4f7640   梁保满   路由表,路由前端文件
676
  </style>