12345678910111213141516171819202122232425 |
- <template>
- <view v-if="question" class="phone-jianda-box">
- <view class="phone-shiti-question">
- <view class="question-num">{{question.onlyNum}}、</view>
- <!-- 题干区域 -->
- <rich-text :nodes="question.name"></rich-text>
- </view>
- <!-- 选项区域 -->
- <view class="jianda-option-box">
- <textarea placeholder="请输入内容" v-model="question.reply" />
- </view>
- </view>
- </template>
- <script setup>
- const props = defineProps({
- question: {
- type: Object,
- },
- showError: {
- type: Boolean,
- default: false
- }
- })
- </script>
|