You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
export default {
|
|
|
|
difficults: [
|
|
|
|
{
|
|
|
|
id: 'basic',
|
|
|
|
name: '基础',
|
|
|
|
coefficient: 0.2, // 难度系数,试卷里计算试卷难度专用
|
|
|
|
theme: 'success',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 'easy',
|
|
|
|
name: '普通',
|
|
|
|
coefficient: 0.4,
|
|
|
|
theme: '',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 'medium',
|
|
|
|
name: '较难',
|
|
|
|
coefficient: 0.6,
|
|
|
|
theme: 'warning',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 'hard',
|
|
|
|
name: '难',
|
|
|
|
coefficient: 0.8,
|
|
|
|
theme: 'danger',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
questionTypes: [
|
|
|
|
{
|
|
|
|
id: 'single_choice',
|
|
|
|
name: '单选题'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 'multiple_choice',
|
|
|
|
name: '多选题'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 'judgement',
|
|
|
|
name: '判断题'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 'fill_blank',
|
|
|
|
name: '填空题'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 'essay',
|
|
|
|
name: '问答题'
|
|
|
|
},
|
|
|
|
],
|
|
|
|
}
|