|
@@ -73,7 +73,9 @@
|
|
<view>
|
|
<view>
|
|
<view v-for="(item, index) in judge" :key="index" class="lisSty">
|
|
<view v-for="(item, index) in judge" :key="index" class="lisSty">
|
|
<text :class="{right:(index == bank.ques) || (index == bank.ans),wrong:(index == bank.ques) && (bank.ques != bank.ans)}" class="activeTI">{{ ast[index] }}</text>
|
|
<text :class="{right:(index == bank.ques) || (index == bank.ans),wrong:(index == bank.ques) && (bank.ques != bank.ans)}" class="activeTI">{{ ast[index] }}</text>
|
|
- {{ item }}
|
|
|
|
|
|
+ <view class="flex_auto">
|
|
|
|
+ {{ item }}
|
|
|
|
+ </view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
@@ -131,7 +133,9 @@
|
|
<view>
|
|
<view>
|
|
<view v-for="(option, childIndex) in ansItem.optionsList" :key="childIndex" class="lisSty">
|
|
<view v-for="(option, childIndex) in ansItem.optionsList" :key="childIndex" class="lisSty">
|
|
<text :class="{right:(option.optionsId == bank.ques[ansIndex]) || (option.optionsId == bank.ans[ansIndex]),wrong:(option.optionsId == bank.ques[ansIndex]) && (bank.ques[ansIndex] != bank.ans[ansIndex])}" class="activeTI">{{ ast[childIndex] }}</text>
|
|
<text :class="{right:(option.optionsId == bank.ques[ansIndex]) || (option.optionsId == bank.ans[ansIndex]),wrong:(option.optionsId == bank.ques[ansIndex]) && (bank.ques[ansIndex] != bank.ans[ansIndex])}" class="activeTI">{{ ast[childIndex] }}</text>
|
|
- <rich-text :nodes="option.content"></rich-text>
|
|
|
|
|
|
+ <view class="flex_auto">
|
|
|
|
+ <rich-text :nodes="option.content"></rich-text>
|
|
|
|
+ </view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
@@ -161,7 +165,10 @@
|
|
<view>
|
|
<view>
|
|
<view v-for="(option, childindex) in ansItem.optionsList" :key="childindex" class="lisSty">
|
|
<view v-for="(option, childindex) in ansItem.optionsList" :key="childindex" class="lisSty">
|
|
<text :class="{right:right(bankIndex,ansIndex,option),wrong:wrong(bankIndex,ansIndex,option)}" class="activeTI">{{ ast[childindex] }}</text>
|
|
<text :class="{right:right(bankIndex,ansIndex,option),wrong:wrong(bankIndex,ansIndex,option)}" class="activeTI">{{ ast[childindex] }}</text>
|
|
- <rich-text :nodes="option.content"></rich-text>
|
|
|
|
|
|
+ <view class="flex_auto">
|
|
|
|
+ <rich-text :nodes="option.content"></rich-text>
|
|
|
|
+ </view>
|
|
|
|
+
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
@@ -193,7 +200,10 @@
|
|
<view>
|
|
<view>
|
|
<view v-for="(option, childindex) in judge" :key="childindex" class="lisSty">
|
|
<view v-for="(option, childindex) in judge" :key="childindex" class="lisSty">
|
|
<text :class="{right:(childindex == bank.ques[ansIndex]) || (childindex == bank.ans[ansIndex]),wrong:(childindex == bank.ques[ansIndex]) && (bank.ques[ansIndex] != bank.ans[ansIndex])}" class="activeTI">{{ ast[childindex] }}</text>
|
|
<text :class="{right:(childindex == bank.ques[ansIndex]) || (childindex == bank.ans[ansIndex]),wrong:(childindex == bank.ques[ansIndex]) && (bank.ques[ansIndex] != bank.ans[ansIndex])}" class="activeTI">{{ ast[childindex] }}</text>
|
|
- {{ option }}
|
|
|
|
|
|
+ <view class="flex_auto">
|
|
|
|
+ {{ option }}
|
|
|
|
+ </view>
|
|
|
|
+
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|