* 清除所有选中状态
()
| 45 | * 清除所有选中状态 |
| 46 | */ |
| 47 | clearSelection() { |
| 48 | // 清除所有选中卡片的 DOM 状态 |
| 49 | this.selectedCards.forEach((highlight, element) => { |
| 50 | element.removeClass('selected'); |
| 51 | }); |
| 52 | |
| 53 | // 清空选中的卡片集合 |
| 54 | this.selectedCards.clear(); |
| 55 | |
| 56 | // 通知选择变化 |
| 57 | this.notifySelectionChange(); |
| 58 | } |
| 59 | |
| 60 | /** |
| 61 | * 更新选中的高亮列表 |
no test coverage detected