| 12345678910111213141516171819202122232425 |
- <!doctype html>
- <html lang="zh-CN">
- <head>
- <meta charset="UTF-8" />
- <link rel="icon" type="image/svg+xml" href="/vite.svg" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <title>摄像头管理系统</title>
- <!-- Jessibuca 播放器(用于 FLV/GB28181 流,可选) -->
- <script>
- // 动态加载 Jessibuca,避免文件不存在时报错
- (function() {
- var script = document.createElement('script');
- script.src = '/js/jessibuca/jessibuca.js';
- script.onerror = function() {
- console.warn('Jessibuca player not found. FLV playback will be unavailable.');
- };
- document.head.appendChild(script);
- })();
- </script>
- </head>
- <body>
- <div id="app"></div>
- <script type="module" src="/src/main.ts"></script>
- </body>
- </html>
|