File tree Expand file tree Collapse file tree 2 files changed +9
-6
lines changed
Expand file tree Collapse file tree 2 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 22
33## 更新日志:
44v3.7:
5- 1 . 统一单选及多选下,标示的显示逻辑,单选未选中的选项标黄
6- 2 . 未做选择,直接显示答案时,你的选项将提示【未选择】
5+ 1 . 未做选择,直接显示答案时,你的选项将提示【未选择】
76
87v3.6:
981 . 当设置里【显示类型】为开启状态时,卡片背面才将问题类型在题目前显示
5251
5352## 判断说明
5453单选/多选情况下,标示正确/错误的所有情况如下:
55- ### 单选及多选
54+ ### 单选
55+ | | 正确选项 | 错误选项 |
56+ | :---: | :----: | :----: |
57+ | 选中 | ✅ | ❌ |
58+ | 未选中 | ✅ | 无变化 |
59+
60+ ### 多选
5661| | 正确选项 | 错误选项 |
5762| :---: | :----: | :----: |
5863| 选中 | ✅ | ❌ |
Original file line number Diff line number Diff line change 5858 _class = 'option'
5959 }
6060 } else {
61- if ( _isCorrect && _isSelected ) {
61+ if ( _isCorrect ) {
6262 _class = 'option ' + correctClass
63- } else if ( _isCorrect && ! _isSelected ) {
64- _class = 'option ' + shouldSelectClass
6563 } else {
6664 _class = _isSelected ? 'option ' + wrongClass : 'option'
6765 }
You can’t perform that action at this time.
0 commit comments