b769660c
梁保满
备课组题细节调整,随堂问列表页面开发完成
|
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
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
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
723
724
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
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
|
data() {
return {
role: "",
loading: false,
dialogVisible: false, //修改答案
editType: true, //修改答案模式
editId: "",
form: { questionList: [] },
form2: { questionList: [] },
date: "", //今天-昨天-本周
query: {
//搜索条件
clazzId: "",
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",
},
],
},
],
},
],
tableAsk:[
{
xuehao: 1,
xingming: "丁芳菲",
cishu: 5,
dadui: 60,
canyudu: 90,
allzheng: 80,
yidazheng:50,
zongpaiming:5
},
{
xuehao: 1,
xingming: "丁芳菲2",
cishu: 3,
dadui: 20,
canyudu: 80,
allzheng: 60,
yidazheng:65,
zongpaiming:4
}
],
tableStage:[
{
xuehao: 1,
xingming: "丁芳菲",
cishu: 5,
dadui: 60,
chouda: 90,
choudadui: 80,
canyu:50,
duicuo:5
}
]
};
},
async created() {
this.role = this.$store.getters.info.permissions[0]?.roleName;
if (this.role == "班主任") {
this.query.subjectId = [];
}
// await this._QueryClassList();
// await this._QuerySubjectList();
// 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,
},
});
},
setSubPro(type) {
let tit;
switch (type) {
case 2:
tit = "单选题";
break;
case 3:
tit = "多选题";
break;
case 4:
tit = "判断题";
break;
case 5:
tit = "主观题";
break;
}
return tit;
},
edit(item) {
this.form = deepClone(item);
// this.form2 = deepClone(item);
// //组合每道大题中的相同题目
// let questionList = deepClone(item.questionList);
// for (let i = 0; i < questionList.length; i++) {
// let jsons = {};
// let answerOptions = [];
// questionList[i].subQuestions.map((items) => {
// let txt = this.setSubPro(items.questionType);
// if (jsons[txt]) {
// jsons[txt].push(items);
// } else {
// jsons[txt] = [items];
// }
// if (items.questionType == 2 || items.questionType == 3) {
// if (items.answerOptions.length > answerOptions.length) {
// answerOptions = items.answerOptions;
// }
// jsons[txt][0].answerOptions = answerOptions;
// }
// });
// this.form2.questionList[i].subQuestions = Object.keys(jsons).map(
// (item) => {
// return {
// name: item,
// list: jsons[item],
// answerList: "",
// };
// }
// );
// }
this.dialogVisible = true;
},
keydownAnswer(event) {//快速答案设置禁止输入
if (
event.key == "Meta" ||
event.key == "CapsLock" ||
event.key == "Shift" ||
event.key == "Enter" ||
event.key == "Alt" ||
event.key == "Backspace" ||
event.key == "Delete" ||
event.key == "ArrowUp" ||
event.key == "ArrowDown" ||
event.key == "ArrowLeft" ||
event.key == "v" ||
event.key == "V" ||
event.key == "ArrowRight"
) {
return;
} else {
event.returnValue = "";
}
},
setAnswer(obj,answer){//多选答案设置
obj.answerList+=answer
let str = obj.answerList;
let str2 = checkAnswer(
str,
3,
obj.list[0].answerOptions,
obj.list.length
);
obj.answerList = str2;
},
setDate(index) {
const that = this;
this.date = index == this.date ? "" : index;
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;
case 2: {
let times = new Date().getTime() - 24 * 60 * 60 * 1000;
that.query.day = formatDate(new Date(times), "yyyy-MM-dd");
that.query.startDay = that.query.day;
that.query.endDay = that.query.day;
break;
}
case 3: {
let day = new Date().getDay();
if (day == 0) {
//中国式星期天是一周的最后一天
day = 7;
}
let times1 = new Date().getTime() - 24 * 60 * 60 * 1000 * (day - 1);
let times2 = new Date().getTime() - 24 * 60 * 60 * 1000 * (day - 7);
that.query.startDay = formatDate(new Date(times1), "yyyy-MM-dd");
that.query.endDay = formatDate(new Date(times2), "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 = "";
}
}
},
changAnswer(sub, option) {
//设置多选答案
let str = new RegExp(option, "g");
if (sub.correctAnswer?.includes(option)) {
sub.correctAnswer = sub.correctAnswer.replace(str, "");
} else {
let arrs = (sub.correctAnswer && sub.correctAnswer.split("")) || [];
arrs.push(option);
sub.correctAnswer = arrs.sort().join("");
}
},
async saveAnswer(){
// const { data, code, message } = await this.$request.updateAnswerSheet({...this.form});
// if (code == 0) {
this.dialogVisible = false
// } else {
// this.$message.error(message);
// }
},
async changClazz() {
await this._QuerySubjectList();
await this.setDate(1);
},
async _QueryClassList() {
const { data, code, message } = await this.$request.fetchClassList();
if (code === 0) {
this.classList = data.list.map((item) => {
return {
value: item.clazzId,
label: item.clazzName,
};
});
this.query.clazzId = this.classList[0].value;
} else {
this.$message.error(message);
}
},
async _QuerySubjectList() {
const datas = this.query.clazzId
? {
clazzId: this.query.clazzId,
}
: {};
const { data, code, message } = await this.$request.fetchSubjectList(
datas
);
if (code === 0) {
this.subjectList = data.list.map((item) => {
return {
value: item.subjectId,
label: item.subjectName,
};
});
if (this.role == "班主任") {
this.subjectList.unshift({
value: "",
label: "全部",
});
}
this.query.subjectId = this.subjectList[0].value;
} else {
this.$message.error(message);
}
},
async _QueryData() {
this.loading = true;
//多课时对比
let query = {};
for (let key in this.query) {
if (this.query[key] != "") {
query[key] = this.query[key];
}
}
const { data, code, message } = await this.$request.fetchQuizList({
...query,
});
this.loading = false;
if (code === 0) {
} else {
this.$message.error(message);
}
},
},
};
|