科目类型
{{ scope.row.type && typeArr[scope.row.type - 1].name }}
{{ scope.row.difficulty && levelArr[scope.row.difficulty - 1].name }}
{{ scope.row.isEnable == 1 ? "已应用" : "未应用" }}
1、{{questionForm.questionName}}({{questionForm.type == 1 ? '单选题' : '多选题'}})
试题分数:{{questionForm.score}}
难易程度:{{questionForm.difficulty === 1 ? '简单' : questionForm.difficulty === 2 ? '一般' : questionForm.difficulty === 3 ?'困难' : ''}}
是否应用:{{questionForm.isEnable === 1 ? '是':'否'}}