杨磊
2025-03-31 b583abaeafe29ef6ca4d451f2753f15cf2c785ff
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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
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
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
//题库练习
var Practice = [
    {
        type: "completion",
        typeName: "填空题",
        num: 20,
        score: 1,
        totalScore: 20,
        startIndex: 0,
        cIndex: "一",
        list:[]
    },
    {
        type: "judge",
        typeName: "判断题",
        num: 40,
        score: 0.5,
        totalScore: 20,
        startIndex: 0,
        cIndex: "二",
        list:[]
    },
    {
        type: "singleChoice",
        typeName: "单选题",
        num: 90,
        score: 0.5,
        totalScore: 45,
        startIndex: 0,
        cIndex: "三",
        list:[]
    },
    {
        type: "multipleChoice",
        typeName: "多选题",
        num: 35,
        score: 1,
        totalScore: 35,
        startIndex: 0,
        cIndex: "四",
        list:[]
    },
    {
        type: "shortAnswer",
        typeName: "简述题",
        num: 3,
        score: 5,
        totalScore: 15,
        startIndex: 0,
        cIndex: "五",
        list:[]
    },
    {
        type: "discussionQuestions",
        typeName: "论述题",
        num: 2,
        score: 10,
        totalScore: 20,
        startIndex: 0,
        cIndex: "六",
        list:[]
    }
];
// 普通模考
var Normal = [
    {
        type: "judgmentQuestion",
        typeName: "判断题(每题的备选项中,只有1个最符合题意)",
        num: 40,
        score: 0.5,
        totalScore: 20,
        startIndex: 0,
        cIndex: "一"
    },
    {
        type: "singleChoice",
        typeName: "单项选择题(每题的备选项中,只有1个最符合题意)",
        num: 90,
        score: 0.5,
        totalScore: 45,
        startIndex: 40,
        cIndex: "二"
    },
    {
        type: "multipleChoice",
        typeName: "多项选择题(每题的备选项中,有两个或2个以上符合题意,至少有1个错项)",
        num: 35,
        score: 1,
        totalScore: 35,
        startIndex: 130,
        cIndex: "三"
    }
];
 
// 中级考试第一部分
var zhongjikaoshi1 = [
    {
        type: "judgmentQuestion",
        typeName: "判断题(每题的备选项中,只有1个最符合题意)",
        num: 30,
        score: 0.5,
        totalScore: 15,
        startIndex: 0,
        cIndex: "一"
    },
    {
        type: "singleChoice",
        typeName: "单项选择题(每题的备选项中,只有1个最符合题意)",
        num: 40,
        score: 1,
        totalScore: 40,
        startIndex: 30,
        cIndex: "二"
    },
    {
        type: "multipleChoice",
        typeName: "多项选择题(每题的备选项中,有两个或2个以上符合题意,至少有1个错项)",
        num: 15,
        score: 2,
        totalScore: 30,
        startIndex: 70,
        cIndex: "三"
    },
    {
        type: "briefQuestions",
        typeName: "简述题",
        num: 3,
        score: 5,
        totalScore: 15,
        startIndex: 85,
        cIndex: "四"
    }
];
 
// 中级考试第二部分
var zhongjikaoshi2 = [
    {
        type: "completion",
        typeName: "填空题",
        num: 20,
        score: 1,
        totalScore: 20,
        startIndex: 0,
        cIndex: "一"
    },
    {
        type: "singleChoice",
        typeName: "单项选择题(每题的备选项中,只有1个最符合题意)",
        num: 30,
        score: 1,
        totalScore: 30,
        startIndex: 20,
        cIndex: "二"
    },
    {
        type: "multipleChoice",
        typeName: "多项选择题(每题的备选项中,有两个或2个以上符合题意,至少有1个错项)",
        num: 20,
        score: 1.5,
        totalScore: 30,
        startIndex: 50,
        cIndex: "三"
    },
    {
        type: "discussionQuestions",
        typeName: "论述题",
        num: 2,
        score: 10,
        totalScore: 20,
        startIndex: 70,
        cIndex: "四"
    }
];
 
export {
    Practice,
    Normal,
    zhongjikaoshi1,
    zhongjikaoshi2
};