Files
ALL-teach_sys/frontend_能源/index.html

28 lines
869 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>多多畅职教育系统</title>
<!-- GitHub Pages SPA路由支持脚本 -->
<script type="text/javascript">
// 处理从404.html重定向过来的路径
(function(l) {
if (l.search[1] === '/' ) {
var decoded = l.search.slice(1).split('&').map(function(s) {
return s.replace(/~and~/g, '&')
}).join('?');
window.history.replaceState(null, null,
l.pathname.slice(0, -1) + decoded + l.hash
);
}
}(window.location))
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>