From f18eefe9bc45af4f208625cadf3bfc89c63bd4b7 Mon Sep 17 00:00:00 2001 From: lkddi Date: Sat, 25 Apr 2026 02:28:18 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E5=AD=98=E7=82=B9=E6=98=BE?= =?UTF-8?q?=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- resources/views/chat/partials/scripts.blade.php | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/resources/views/chat/partials/scripts.blade.php b/resources/views/chat/partials/scripts.blade.php index afaac9f..0cc3586 100644 --- a/resources/views/chat/partials/scripts.blade.php +++ b/resources/views/chat/partials/scripts.blade.php @@ -3715,14 +3715,13 @@ now.getMinutes().toString().padStart(2, '0') + ':' + now.getSeconds().toString().padStart(2, '0'); const d = data.data; - const levelTitle = d.title || '普通会员'; const identitySummary = d.identity_summary ? `${d.identity_summary} · ` : ''; let levelInfo = ''; if (d.is_max_level) { - levelInfo = `⏰ 自动存点 · ${identitySummary}LV.${d.user_level} · 经验 ${d.exp_num} · 金币 ${d.jjb} · 已满级 ✓`; + levelInfo = `⏰ 手动存点 · ${identitySummary}LV.${d.user_level} · 经验 ${d.exp_num} · 金币 ${d.jjb} · 已满级 ✓`; } else { - levelInfo = `⏰ 自动存点 · ${identitySummary}LV.${d.user_level} · 经验 ${d.exp_num} · 金币 ${d.jjb}`; + levelInfo = `⏰ 手动存点 · ${identitySummary}LV.${d.user_level} · 经验 ${d.exp_num} · 金币 ${d.jjb}`; } // 本次获得的奖励提示 @@ -3747,7 +3746,7 @@ const detailDiv = document.createElement('div'); detailDiv.className = 'msg-line'; detailDiv.innerHTML = - `【${escapeHtml(levelTitle)}存点】${escapeHtml(levelInfo + gainInfo)}(${timeStr})`; + `${escapeHtml(levelInfo + gainInfo)}(${timeStr})`; container2.appendChild(detailDiv); if (autoScroll) container2.scrollTop = container2.scrollHeight; } else {