* 选中单个卡片 * @param element 卡片元素 * @param highlight 高亮数据
(element: HTMLElement, highlight: HighlightInfo)
| 107 | * @param highlight 高亮数据 |
| 108 | */ |
| 109 | selectCard(element: HTMLElement, highlight: HighlightInfo) { |
| 110 | // 添加到选中集合 |
| 111 | this.selectedCards.set(element, highlight); |
| 112 | |
| 113 | // 更新 DOM 状态 |
| 114 | element.addClass('selected'); |
| 115 | |
| 116 | // 通知选择变化 |
| 117 | this.notifySelectionChange(); |
| 118 | } |
| 119 | |
| 120 | /** |
| 121 | * 取消选中单个卡片 |
nothing calls this directly
no test coverage detected