diff --git a/src/views/publicService/quesNaire.vue b/src/views/publicService/quesNaire.vue index 6e29cf0..23d047d 100644 --- a/src/views/publicService/quesNaire.vue +++ b/src/views/publicService/quesNaire.vue @@ -156,17 +156,7 @@

{{ index + 1 }},题目名称:{{ item.problemName }}, - - 题目类型:{{ - item.problemType == 'radio' - ? '单选' - : item.problemType == 'checkbox' - ? '多选' - : item.problemType == 'answers' - ? '简答题' - : '--' - }} - + 题目类型:{{ item.problemType == 'radio' ? '单选' : item.problemType == 'answers' ? '简答题' : '--' }} ,本题有效填写人次:{{ item.fillTimes || 0 }}

@@ -237,7 +227,6 @@ ]); const typeList = ref([ { value: 'radio', label: '单选' }, - { value: 'checkbox', label: '多选' }, { value: 'answers', label: '简答题' }, ]);