bixi
Version:
企业级中后台前端解决方案
119 lines (106 loc) • 3.08 kB
HTML
<html>
<head>
<meta charset="utf-8" />
<title>BIXI - 企业级中后台前端解决方案</title>
<base href="/" />
<meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=0" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<link rel="manifest" href="./assets/pwa-manifest.json" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="translucent" />
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link rel="icon" type="image/x-icon" href="./assets/img/logo.png" />
<link rel="apple-touch-icon" sizes="144x144" href="./assets/img/logo.png" />
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="./assets/img/logo.png" />
<style>
* {
--antd-wave-shadow-color: #007cfe ;
outline: none;
}
html a {
color: #007cfe;
}
</style>
</head>
<body ontouchstart>
<app-root>
<div style="
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
display: flex;
align-items: center;
justify-content: center;
font-size: 14px;
font-family: Helvetica;
">
loading...
</div>
</app-root>
<div id="_ie" style="
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 9999;
display: none;
padding-top: 32px;
font-size: 22px;
text-align: center;
background: #fff;
">
Your browser is not supported for Bixi document site
</div>
<div id="_slow" style="
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 9999;
display: none;
align-items: center;
justify-content: center;
text-align: center;
background: #fff;
">
<div>
<h1 style="font-size: 22px;">KEEPING LOAD...</h1>
</div>
</div>
<script>
if (!!navigator.userAgent.match(/Trident/g) || !!navigator.userAgent.match(/MSIE/g)) {
document.querySelector('#_ie').style.display = 'block';
}
</script>
<script>
setTimeout(() => {
var el = document.querySelector('#_slow');
if (el) {
el.style.display = 'flex';
}
}, 1000 * 8);
</script>
<script src="./assets/highlight.pack.js"></script>
</body>
</html>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script>
if (window.location.host.indexOf('datagrand.com') !== -1) {
const script = document.createElement("script");
script.type = "text/javascript";
script.async = 'true';
script.src = "https://www.googletagmanager.com/gtag/js?id=UA-172049903-1";
document.body.appendChild(script);
console.warn('ga work');
window.BIXI_GA_ID = 'UA-172049903-1';
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', window.BIXI_GA_ID);
}
</script>