Feat: 鱼上钩通知中的[拉竿]文字支持点击触发拉竿操作

This commit is contained in:
2026-02-27 13:03:05 +08:00
parent f9a1c7f6bc
commit 5d1e7e26e2

View File

@@ -1049,7 +1049,7 @@
const hookDiv = document.createElement('div');
hookDiv.className = 'msg-line';
hookDiv.innerHTML =
'<span style="color: #d97706; font-weight: bold; font-size: 14px;">🐟 鱼上钩了!快点击 [拉竿] 按钮!</span>';
'<span style="color: #d97706; font-weight: bold; font-size: 14px;">🐟 鱼上钩了!快点击 <span onclick="reelFish()" style="text-decoration:underline; cursor:pointer; color:#dc2626;">[拉竿]</span> 按钮!</span>';
container2.appendChild(hookDiv);
if (autoScroll) container2.scrollTop = container2.scrollHeight;