diff --git a/src/views/system/addQuestionnaire/index.vue b/src/views/system/addQuestionnaire/index.vue
index b829bf3..93cce6e 100644
--- a/src/views/system/addQuestionnaire/index.vue
+++ b/src/views/system/addQuestionnaire/index.vue
@@ -58,6 +58,15 @@
{{ item.name }}
+
+
![]()
+
{{ item.name }}
+
+
+
+

+

+
+ {{ index + 1 }}. {{ item.title }}
+
+
+ 题目:
+
+
+
+
+ 别名:
+
+
+
+
+ 回答:
+
+
+
+
0) {
+ if (this.questionlist[this.questionlist.length - 1].questionName == '' || this.questionlist[this.questionlist.length - 1].questionDescription == '') {
+ return this.$message.error('请填写完在继续添加');
+ }
+ }
+
+ this.questionlist.push({
+ questionType: 'FEEDBACK_BLANKS_SUBJECT',
+ id: this.id++,
+ questionName: '',
+ questionNameAlias:'',
+ title: '反馈填空题',
+ //是否计分
+ whetherScore: false,
+ disabled: true,
+ })
+
+ },
addquestion(item) {
console.log(item, 'item选择类型')
this.id++
@@ -1413,7 +1499,8 @@ export default {
whetherScore: false,
disabled: true,
})
- } else if (item.id == 'SCORING_QUESTIONS') {
+ }
+ else if (item.id == 'SCORING_QUESTIONS') {
this.questionlist.push({
questionType: 'SCORING_QUESTIONS',
id: this.id,
@@ -1939,6 +2026,10 @@ export default {
} else if (e.questionType == 'TIME_BLANKS_SUBJECT') {
e.title = '时间填空题'
this.questionlist.push(e)
+ }
+ else if (e.questionType == 'FEEDBACK_BLANKS_SUBJECT') {
+ e.title = '反馈填空题'
+ this.questionlist.push(e)
} else if (e.questionType == 'COMBINATION_RADIO_SUBJECT') {
e.title = '单选题'
} else if (e.questionType == 'COMBINATION_MULTIPLE_SUBJECT') {