|
@@ -214,9 +214,9 @@ export default {
|
|
|
},
|
|
|
{
|
|
|
title: '试题类别',
|
|
|
- dataIndex: 'questionTypeTxt',
|
|
|
- key: 'questionTypeTxt',
|
|
|
- scopedSlots: { customRender: 'questionTypeTxt' },
|
|
|
+ dataIndex: 'typeTxt',
|
|
|
+ key: 'typeTxt',
|
|
|
+ scopedSlots: { customRender: 'typeTxt' },
|
|
|
width: 150,
|
|
|
},
|
|
|
{
|
|
@@ -325,7 +325,7 @@ export default {
|
|
|
// 试题类别
|
|
|
EXAM_QUESTION_TYPE.forEach((it) => {
|
|
|
if (item.type === it.code) {
|
|
|
- item.questionTypeTxt = it.name;
|
|
|
+ item.typeTxt = it.name;
|
|
|
}
|
|
|
});
|
|
|
// 工种
|
|
@@ -363,7 +363,6 @@ export default {
|
|
|
},
|
|
|
// 操作:详情
|
|
|
toQuestionDetailFun(record) {
|
|
|
- console.log('查看某个试题的详情', record);
|
|
|
this.questionDetail = record;
|
|
|
this.isVisible = true;
|
|
|
// if (!record || !record.id) {
|