迁移双色球彩票脚本

This commit is contained in:
2026-04-25 14:22:59 +08:00
parent e6a686233f
commit c7b8ba956b
3 changed files with 357 additions and 261 deletions
+13
View File
@@ -15,6 +15,7 @@
* - friend-panel.js:处理好友面板、搜索和好友快捷操作。
* - friend-notifications.js:监听好友通知和通用 BannerNotification。
* - lightbox.js:处理聊天图片预览灯箱。
* - lottery-panel.js:提供双色球彩票 lotteryPanel Alpine 组件和全局开关入口。
* - mobile-drawer.js:处理移动端抽屉、房间列表和在线名单。
* - marriage-status.js:处理婚姻状态展示与用户名片联动。
* - toolbar.js:处理工具栏按钮和功能快捷入口。
@@ -56,6 +57,7 @@ export { bindChatToast } from "./chat-room/toast.js";
export { bindFriendPanelControls, closeFriendPanel, friendSearch, loadFriends, openFriendPanel, quickFriendAction } from "./chat-room/friend-panel.js";
export { bindFriendNotificationControls, setupBannerNotification, setupFriendNotification, showFriendBanner } from "./chat-room/friend-notifications.js";
export { closeChatImageLightbox, initChatImageLightboxEvents, openChatImageLightbox } from "./chat-room/lightbox.js";
export { bindLotteryPanelControls, closeLotteryPanel, lotteryPanel, openLotteryPanel, showLotteryMsg } from "./chat-room/lottery-panel.js";
export {
bindMobileDrawerControls,
closeMobileDrawer,
@@ -148,6 +150,7 @@ import { bindChatToast } from "./chat-room/toast.js";
import { bindFriendPanelControls, closeFriendPanel, friendSearch, loadFriends, openFriendPanel, quickFriendAction } from "./chat-room/friend-panel.js";
import { bindFriendNotificationControls, setupBannerNotification, setupFriendNotification, showFriendBanner } from "./chat-room/friend-notifications.js";
import { closeChatImageLightbox, initChatImageLightboxEvents, openChatImageLightbox } from "./chat-room/lightbox.js";
import { bindLotteryPanelControls, closeLotteryPanel, lotteryPanel, openLotteryPanel, showLotteryMsg } from "./chat-room/lottery-panel.js";
import {
bindMobileDrawerControls,
closeMobileDrawer,
@@ -240,6 +243,11 @@ if (typeof window !== "undefined") {
sendToChatBot,
bindGlobalDialogControls,
bindDailySignInControls,
bindLotteryPanelControls,
closeLotteryPanel,
lotteryPanel,
openLotteryPanel,
showLotteryMsg,
applyFontSize,
bindChatFontSizeControl,
bindChatImageUploadControl,
@@ -382,9 +390,13 @@ if (typeof window !== "undefined") {
window.closeGameHall = closeGameHall;
window.fetchBankRanking = fetchBankRanking;
window.fortunePanel = fortunePanel;
window.closeLotteryPanel = closeLotteryPanel;
window.deferChatGameBootstrap = deferChatGameBootstrap;
window.lotteryPanel = lotteryPanel;
window.openGameHall = openGameHall;
window.openLotteryPanel = openLotteryPanel;
window.openBankModal = openBankModal;
window.showLotteryMsg = showLotteryMsg;
window.switchBankTab = switchBankTab;
window.toggleBankRankSort = toggleBankRankSort;
window.applyFontSize = applyFontSize;
@@ -395,6 +407,7 @@ if (typeof window !== "undefined") {
bindAppointmentAnnouncementControls();
bindGlobalDialogControls();
bindDailySignInControls();
bindLotteryPanelControls();
bindChatFontSizeControl();
bindChatImageUploadControl();
bindChatComposerControls();