| | |
| | | <p class="text-red-500"> |
| | | {{ item.content.errMsg }} |
| | | </p> |
| | | <div class="mt-5 flex items-center" v-if="showFixQuestion(item)"> |
| | | <div class="text-gray-600 flex-0"> |
| | | {{ item.content.origin.err_json.fix_question.title + ':' }} |
| | | <div class="mt-5 flex" v-if="showFixQuestion(item)"> |
| | | <div class="text-gray-600 flex-0 mt-4"> |
| | | {{ '猜你想问:' }} |
| | | </div> |
| | | <div class="ml-1 space-x-2 inline-flex flex-wrap"> |
| | | <div |
| | | v-for="fixItem in item.content.origin.err_json.fix_question?.values" |
| | | v-for="fixItem in item.content.origin?.sample_question" |
| | | :key="fixItem" |
| | | class="bg-gray-200 p-3 hover:bg-[#c5e0ff] hover:text-[#1c86ff] cursor-pointer rounded-lg" |
| | | class="bg-gray-200 p-3 mt-1 hover:bg-[#c5e0ff] hover:text-[#1c86ff] cursor-pointer rounded-lg" |
| | | @click="fixQuestionClick(fixItem, item.content.origin)" |
| | | > |
| | | {{ fixItem.title }} |
| | | {{ fixItem }} |
| | | </div> |
| | | </div> |
| | | </div> |