【m】修改渲染顺序

This commit is contained in:
2026-04-11 19:05:19 +08:00
parent f4ab50b73e
commit cb32582c98
3 changed files with 75 additions and 54 deletions

View File

@@ -157,7 +157,7 @@ window.addEventListener('DOMContentLoaded', async () => {
//await store.init();
// 初始化渲染器
new UIRenderer(store);
const renderer = new UIRenderer(store);
// 加入通话
await store.joinCall(connectionId);
@@ -165,6 +165,8 @@ window.addEventListener('DOMContentLoaded', async () => {
// 设置WebRTC连接
await store.setUp(connectionId);
renderer.renderHeaderTitle();
// 绑定DOM事件
bindDomEvents();