From f0e48d98e4920e2557c4cdc7d6874f10a763c963 Mon Sep 17 00:00:00 2001 From: kuaifan Date: Thu, 18 Jun 2026 14:01:50 +0800 Subject: [PATCH] =?UTF-8?q?feat(messenger):=20=E7=A7=BB=E5=8A=A8=E7=AB=AF?= =?UTF-8?q?=E5=8F=91=E9=80=81=E6=8C=89=E9=92=AE=E9=BB=98=E8=AE=A4=E6=94=B9?= =?UTF-8?q?=E4=B8=BA=E6=98=BE=E7=A4=BA=E5=8F=91=E9=80=81=E6=8C=89=E9=92=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 移动端 send_button_app 默认值由 enter 改为 button, 默认显示独立发送按钮(桌面端保持 enter 回车发送)。 Co-Authored-By: Claude Opus 4.8 (1M context) --- resources/assets/js/store/actions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/assets/js/store/actions.js b/resources/assets/js/store/actions.js index c1515f446..40069505f 100644 --- a/resources/assets/js/store/actions.js +++ b/resources/assets/js/store/actions.js @@ -1081,7 +1081,7 @@ export default { } const data = $A.isJson(newData) ? newData : ($A.jsonParse(window.localStorage.getItem("__system:keyboardConf__")) || {}) data.screenshot_key = (data.screenshot_key || "").trim().toLowerCase() - data.send_button_app = data.send_button_app || 'enter' // button, enter 移动端发送按钮,默认 enter (键盘回车发送) + data.send_button_app = data.send_button_app || 'button' // button, enter 移动端发送按钮,默认 button (显示发送按钮) data.send_button_desktop = data.send_button_desktop || 'enter' // button, enter 桌面端发送按钮,默认 enter (键盘回车发送) window.localStorage.setItem("__system:keyboardConf__", $A.jsonStringify(data)) state.cacheKeyboard = data