From 50bb3c45ed817640598d732b91f2ed18ae388b30 Mon Sep 17 00:00:00 2001 From: yuzhiran Date: Sun, 5 Jul 2026 19:41:21 +0800 Subject: [PATCH] =?UTF-8?q?ux:=20=E5=BD=95=E9=9F=B3=E6=94=B9=E4=B8=BA?= =?UTF-8?q?=E7=82=B9=E5=87=BB=E5=BC=80=E5=A7=8B/=E7=82=B9=E5=87=BB?= =?UTF-8?q?=E7=BB=93=E6=9D=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 移除长按交互 (touchstart/touchend/mousedown/mouseup) - 改为单击 toggle: 点击🎤开始录音, 再点击结束录音 - 按钮默认只显示🎤, 录音中显示🔴+秒数 - 下方提示改为'点击结束' - 录音开始时清空 inputText - 移除 suppressAutoSend 标志 (点击结束都是有意操作) --- zhiyin-app/src/pages/interview/interview.vue | 43 +++++++++----------- 1 file changed, 19 insertions(+), 24 deletions(-) diff --git a/zhiyin-app/src/pages/interview/interview.vue b/zhiyin-app/src/pages/interview/interview.vue index 42d90db..df50d06 100644 --- a/zhiyin-app/src/pages/interview/interview.vue +++ b/zhiyin-app/src/pages/interview/interview.vue @@ -61,14 +61,14 @@ - + {{ isRecording ? '🔴' : '🎤' }} - {{ isRecording ? recordingDuration + 's' : '按住' }} + {{ recordingDuration }}s - 松开结束 + 点击结束 -