| | |
| | | sipStatus: "未连接", |
| | | sipStatusClass: "status-disconnected", |
| | | sipConfig: { |
| | | wsUrl: "wss://9.208.5.18:7443", |
| | | sipUri: "1000@9.208.5.18", |
| | | wsUrl: "wss://192.168.10.124:7443", |
| | | sipUri: "1000@192.168.10.124", |
| | | password: "Smartor@2023", |
| | | displayName: "Web 小龙", |
| | | // realm: "9.208.5.18:8090", |
| | | // realm: "192.168.10.124:8090", |
| | | }, |
| | | }; |
| | | }, |
| | |
| | | }, |
| | | mounted() { |
| | | // 测试 |
| | | const ws = new WebSocket("wss://9.208.5.18:7443"); |
| | | const ws = new WebSocket("wss://192.168.10.124:7443"); |
| | | ws.onopen = () => console.log("WebSocket 连接成功"); |
| | | ws.onerror = (e) => console.error("WebSocket 错误:", e); |
| | | |