|
@@ -15,7 +15,7 @@
|
|
|
<div class="que_content">
|
|
|
<div class="que-content-title">
|
|
|
<div class="index">{{ (pageForm.pageSize*(pageForm.pageNum-1)+index+1) }}.</div>
|
|
|
- <div v-html="item.title"></div>
|
|
|
+ <mx-question-content :options="questionOptions(item)"></mx-question-content>
|
|
|
</div>
|
|
|
<div class="que-option">
|
|
|
<div v-if="item.optionA">
|
|
@@ -66,9 +66,10 @@
|
|
|
import MxSearchGroup from '@/components/MxSearch/mx-search-group'
|
|
|
import MxCondition from '@/components/MxCondition/mx-condition'
|
|
|
import { getAiAdStudyQuestionList } from '@/api/webApi/webVideo'
|
|
|
+import MxQuestionContent from '@/components/MxPaper/mx-question-content'
|
|
|
|
|
|
export default {
|
|
|
- components: { MxSearchGroup, MxCondition },
|
|
|
+ components: { MxSearchGroup, MxCondition,MxQuestionContent },
|
|
|
data() {
|
|
|
return {
|
|
|
pageForm: {
|
|
@@ -82,6 +83,7 @@ export default {
|
|
|
queryParams: {
|
|
|
v2Subject:'',
|
|
|
},
|
|
|
+ total:0,
|
|
|
requireFields: ['v2Subject']
|
|
|
}
|
|
|
},
|
|
@@ -96,6 +98,15 @@ export default {
|
|
|
this.queList[index].createTime = true;
|
|
|
}
|
|
|
},
|
|
|
+ questionOptions(row) {
|
|
|
+ return {
|
|
|
+ question: row,
|
|
|
+ allowAnswer: false,
|
|
|
+ allowScore: false,
|
|
|
+ examineeType: '',
|
|
|
+ paperOptions: null
|
|
|
+ }
|
|
|
+ },
|
|
|
getList() {
|
|
|
this.loading = true
|
|
|
getAiAdStudyQuestionList({
|