Files
wysite/__mirror/runtime/hc-pos-dashboard/index.html

45 lines
1.1 KiB
HTML

<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>项目运营平台 - 运行态镜像</title>
<style>
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Helvetica Neue", sans-serif;
background: #0b1220;
color: #eef4ff;
}
#mirror-loading {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
gap: 12px;
letter-spacing: 0.02em;
}
#mirror-loading small {
color: #98a7c2;
}
</style>
</head>
<body>
<div id="mirror-loading">
<div>正在启动项目运营平台运行态镜像…</div>
<small>会预置本地存储并接管接口请求</small>
</div>
<div id="app"></div>
<script>
(function () {
var script = document.createElement("script");
script.src = "./runtime-bootstrap.js" + (location.search || "");
document.body.appendChild(script);
})();
</script>
</body>
</html>