Feat: 商店功能完整实现(单次特效卡888/周卡8888/改名卡5000,含购买、周卡覆盖、改名黑名单)

This commit is contained in:
2026-02-27 15:57:12 +08:00
parent c52998671b
commit 7fb86bfe21
15 changed files with 999 additions and 4 deletions

View File

@@ -103,6 +103,17 @@
@include('chat.partials.scripts')
{{-- 周卡特效:登录时自动播放(仅持卡用户可见) --}}
@if (!empty($weekEffect))
<script>
/** 周卡特效延迟1秒待页面完成加载后自动播放 */
setTimeout(() => {
if (window.EffectManager) {
window.EffectManager.play('{{ $weekEffect }}');
}
}, 1000);
</script>
@endif
</body>