mirror of
https://gitee.com/lab1024/smart-admin.git
synced 2025-09-17 19:06:39 +08:00
39 lines
1.1 KiB
HTML
39 lines
1.1 KiB
HTML
<!--
|
|
* @Description: 首页
|
|
* @Author: zhuoda
|
|
* @Date: 2021-08-03
|
|
* @LastEditTime: 2022-06-23
|
|
* @LastEditors: zhuoda
|
|
-->
|
|
<!DOCTYPE html>
|
|
<html lang="en" id="htmlRoot">
|
|
<head>
|
|
<meta charset="UTF-8"/>
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
|
|
<meta name="renderer" content="webkit"/>
|
|
<meta name="viewport"
|
|
content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=0"
|
|
/>
|
|
<title> %VITE_APP_TITLE%</title>
|
|
<link rel="icon" href="/favicon.ico"/>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script>
|
|
let url = window.location.href;
|
|
if(url.indexOf("1024lab") > -1){
|
|
location.href = "https://preview.smartadmin.vip";
|
|
}
|
|
|
|
var _hmt = _hmt || [];
|
|
(function() {
|
|
var hm = document.createElement("script");
|
|
hm.src = "https://hm.baidu.com/hm.js?5e12fadc47eb3aac662d848fd39ec07a";
|
|
var s = document.getElementsByTagName("script")[0];
|
|
s.parentNode.insertBefore(hm, s);
|
|
})();
|
|
</script>
|
|
<script type="module" src="/src/main.js"></script>
|
|
</body>
|
|
</html>
|