(container)
| 258 | |
| 259 | // 获取自定义多选下拉中选中的服务 ID 列表 |
| 260 | function getSelectedServiceIds(container) { |
| 261 | if (!container) return []; |
| 262 | return Array.from(container.querySelectorAll('.msd-item input:checked')).map(cb => parseInt(cb.value)); |
| 263 | } |
| 264 | |
| 265 | // 事件监听 |
| 266 | function initEventListeners() { |
no outgoing calls
no test coverage detected