This commit is contained in:
dap
2026-04-08 10:34:35 +08:00
37 changed files with 1519 additions and 204 deletions

View File

@@ -47,6 +47,8 @@ function search(searchKey: string) {
searchResults.value = [];
return;
}
// 将搜索关键词转换为小写,确保大小写不敏感的搜索
searchKey = searchKey.toLowerCase();
// 使用搜索关键词创建正则表达式
const reg = createSearchReg(searchKey);