zydx-plus 1.33.368 → 1.33.370
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,20 +1,65 @@
|
|
|
1
1
|
let buttonNames = {
|
|
2
2
|
methods: {
|
|
3
3
|
initConfig (item) {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
4
|
+
if (this.headerType === 0) { // 互动资源 教师
|
|
5
|
+
return this.interactResourceButtonList(item);
|
|
6
|
+
} else if (this.headerType === 1) { // 动作
|
|
7
|
+
return this.actionButtonList(item);
|
|
8
|
+
} else if (this.headerType === 2) { // 学生 未定
|
|
9
|
+
return this.studentActionButtonList(item);
|
|
10
|
+
} else if (this.headerType === 3) {
|
|
11
|
+
return {};
|
|
12
|
+
} else if (this.headerType === 4) { // 阅读资源 教师
|
|
13
|
+
return this.readResourceButtonList(item);
|
|
14
|
+
}
|
|
15
15
|
},
|
|
16
16
|
actionButtonList (item) {
|
|
17
17
|
let actionInfo = {
|
|
18
|
+
action_scene:{
|
|
19
|
+
actionName: '情景学习',
|
|
20
|
+
buttonList: {
|
|
21
|
+
0: {
|
|
22
|
+
headLevel: {
|
|
23
|
+
default: "demand",
|
|
24
|
+
demand: '学习要求',
|
|
25
|
+
singletonClass: this.getCurrentPrefix(item) + '学习',
|
|
26
|
+
allClass: this.getPrefix(item) + '情况',
|
|
27
|
+
},
|
|
28
|
+
otherLevel: {
|
|
29
|
+
default: "singletonClass",
|
|
30
|
+
singletonClass: this.getCurrentPrefix(item) + '学习',
|
|
31
|
+
allClass: this.getPrefix(item) + '情况'
|
|
32
|
+
},
|
|
33
|
+
lowLevel: {
|
|
34
|
+
default: "singletonClass",
|
|
35
|
+
singletonClass: '学习任务',
|
|
36
|
+
score: '学习成绩',
|
|
37
|
+
analysis: '统计分析',
|
|
38
|
+
power: '学习动力'
|
|
39
|
+
}
|
|
40
|
+
},
|
|
41
|
+
2: {
|
|
42
|
+
headLevel: {
|
|
43
|
+
default: "singletonClass",
|
|
44
|
+
singletonClass: this.getCurrentPrefix(item) + '学习',
|
|
45
|
+
allClass: this.getPrefix(item) + '情况',
|
|
46
|
+
},
|
|
47
|
+
otherLevel: {
|
|
48
|
+
default: "singletonClass",
|
|
49
|
+
singletonClass: this.getCurrentPrefix(item) + '学习',
|
|
50
|
+
allClass: this.getPrefix(item) + '情况',
|
|
51
|
+
},
|
|
52
|
+
lowLevel: {
|
|
53
|
+
default: "singletonClass",
|
|
54
|
+
singletonClass: '学习任务',
|
|
55
|
+
score: '学习成绩',
|
|
56
|
+
analysis: '统计分析',
|
|
57
|
+
assessment: '素养评估',
|
|
58
|
+
power: '学习动力'
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
},
|
|
18
63
|
action_checktime: {
|
|
19
64
|
actionName: '考勤管理',
|
|
20
65
|
buttonList: {
|
|
@@ -526,13 +571,13 @@ let buttonNames = {
|
|
|
526
571
|
headLevel: {
|
|
527
572
|
default: "demand",
|
|
528
573
|
demand: '训练要求',
|
|
529
|
-
|
|
574
|
+
quest:'全课试题',
|
|
530
575
|
singletonClass: this.getPrefix(item) + '训练',
|
|
531
576
|
allClass: this.getPrefix(item) + '情况',
|
|
532
577
|
},
|
|
533
578
|
otherLevel: {
|
|
534
579
|
default: "singletonClass",
|
|
535
|
-
|
|
580
|
+
quest:'全章试题',
|
|
536
581
|
singletonClass: this.getPrefix(item) + '训练',
|
|
537
582
|
allClass: this.getPrefix(item) + '情况',
|
|
538
583
|
},
|
|
@@ -716,13 +761,13 @@ let buttonNames = {
|
|
|
716
761
|
headLevel: {
|
|
717
762
|
default: "demand",
|
|
718
763
|
demand: '作业要求',
|
|
719
|
-
|
|
764
|
+
quest:'全课题目',
|
|
720
765
|
singletonClass: this.getCurrentPrefix(item) + '作业',
|
|
721
766
|
allClass: this.getPrefix(item) + '情况',
|
|
722
767
|
},
|
|
723
768
|
otherLevel: {
|
|
724
769
|
default: "singletonClass",
|
|
725
|
-
|
|
770
|
+
quest:'全章题目',
|
|
726
771
|
singletonClass: this.getCurrentPrefix(item) + '作业',
|
|
727
772
|
allClass: this.getPrefix(item) + '情况',
|
|
728
773
|
},
|
|
@@ -2221,7 +2266,7 @@ let buttonNames = {
|
|
|
2221
2266
|
},
|
|
2222
2267
|
resource_Interrogation: {
|
|
2223
2268
|
actionName: '追问资源',
|
|
2224
|
-
|
|
2269
|
+
buttonList: {
|
|
2225
2270
|
0: {
|
|
2226
2271
|
headLevel: {
|
|
2227
2272
|
default: "demand",
|