45 lines
1.1 KiB
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: #0c1424;
|
|
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: #9aabc7;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="mirror-loading">
|
|
<div>正在启动企业服务平台运行态镜像…</div>
|
|
<small>会预置本地存储、会话和接口 mock</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>
|