//题库练习 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 };