jianda.vue 556 B

12345678910111213141516171819202122232425
  1. <template>
  2. <view v-if="question" class="phone-jianda-box">
  3. <view class="phone-shiti-question">
  4. <view class="question-num">{{question.onlyNum}}、</view>
  5. <!-- 题干区域 -->
  6. <rich-text :nodes="question.name"></rich-text>
  7. </view>
  8. <!-- 选项区域 -->
  9. <view class="jianda-option-box">
  10. <textarea placeholder="请输入内容" v-model="question.reply" />
  11. </view>
  12. </view>
  13. </template>
  14. <script setup>
  15. const props = defineProps({
  16. question: {
  17. type: Object,
  18. },
  19. showError: {
  20. type: Boolean,
  21. default: false
  22. }
  23. })
  24. </script>