fix: 选择斜杠命令后自动清除输入框中的 /

- 统一在 selectCommand 公共入口清理输入
- 新增 /签到 命令,自动完成今日签到
This commit is contained in:
pllx
2026-04-28 23:12:30 +08:00
parent 0850004d39
commit 1850a5f4e9
+4
View File
@@ -163,6 +163,10 @@ function selectCommand(index) {
window.persistChatDraft?.(cmd.name);
}
// 统一清除输入框中的 /
input.value = "";
window.persistChatDraft?.("");
hideMenu();
input.focus();
}