| | |
| | | <div class="q-title" v-html="qLabel+' '+question.title" style="font-size: 23px"/> |
| | | <div class="q-content"> |
| | | <el-radio-group v-model="answer.content" @change="answer.completed = true"> |
| | | <el-radio v-for="item in question.items" :key="item.prefix" :label="item.prefix" @change="jumpNext" :disabled="answer.readOnly" style="display:block;"> |
| | | <el-radio v-for="item in question.items" :key="item.prefix" :label="item.prefix" @change="jumpNext" :disabled="answer.readOnly" style="display:block;border:1px solid #b3b5ba;margin:5px 0px 5px 0px;padding:0px 25px 0px 15px;border-radius:5px;"> |
| | | <span class="question-prefix" style="font-size: 18px">{{abcValue[item.prefix]}}.</span> |
| | | <span v-html="item.content" class="q-item-span-content" style="font-size: 18px"></span> |
| | | </el-radio> |
| | |
| | | name: 'QuestionShow', |
| | | data () { |
| | | return { |
| | | abcValue: { '1': 'A', '2': 'B', '3': 'C', '4': 'D', '5': 'E', '6': 'F' } |
| | | abcValue: { '1': 'A', '2': 'B', '3': 'C', '4': 'D', '5': 'E', '6': 'F', '7': 'G', '8': 'H', '9': 'I', '10': 'J' } |
| | | } |
| | | }, |
| | | props: { |