Files
mes-ui-d2/public/index.html
liyang 1517c714d9 去除手机访问的判断
Former-commit-id: 18e1cce88f2ebac914a5b46a7971942ff9d6f8fd [formerly 18e1cce88f2ebac914a5b46a7971942ff9d6f8fd [formerly 18e1cce88f2ebac914a5b46a7971942ff9d6f8fd [formerly 18e1cce88f2ebac914a5b46a7971942ff9d6f8fd [formerly 4926ba17f52262942b285b642ed251658eca408a [formerly e787d9b98c0d454855861eea7fa162a4befcebc4]]]]]
Former-commit-id: e9fd1a9e6ab8672820259e8505e63c3b3457e773
Former-commit-id: 4c6e4fbb68fb36c5aa8c78b13f5f2f9e51692c30
Former-commit-id: 7b461351e0e0b41718f9eb74bfe810007ec27d94 [formerly a99d3ef7479c9b45fa343093872336f0ca2f923b]
Former-commit-id: bf7d712bdeeb63568bb4ecbacc30567d040dacae
Former-commit-id: 367e64bec7756fe10390477d8e2d9ee7944a2ff0
Former-commit-id: 1da498cea550159d6d8c2aaedd1ce96b5749c54e
Former-commit-id: 2dbbb9f3681492f2777daebb43b7c89f0f0f21b6
Former-commit-id: fff86c444c0ea76183644bc7f8164f9c8a3be8a7
2019-01-15 20:34:09 +08:00

56 lines
2.2 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link rel="icon" href="<%= BASE_URL %>icon.ico">
<title><%= VUE_APP_TITLE %></title>
<style>
html, body, #app { height: 100%; margin: 0px; padding: 0px; }
.d2-home { background-color: #303133; height: 100%; display: flex; flex-direction: column; }
.d2-home__main { user-select: none; width: 100%; flex-grow: 1; display: flex; justify-content: center; align-items: center; flex-direction: column; }
.d2-home__footer { width: 100%; flex-grow: 0; text-align: center; padding: 1em 0; }
.d2-home__footer > a { font-size: 12px; color: #ABABAB; text-decoration: none; }
.d2-home__loading { height: 32px; width: 32px; margin-bottom: 20px; }
.d2-home__title { color: #FFF; font-size: 14px; margin-bottom: 10px; }
.d2-home__sub-title { color: #ABABAB; font-size: 12px; }
</style>
<script>
var _hmt = _hmt || [];
var hmid = "bc38887aa5588add05a38704342ad7e8";
(function() { var hm = document.createElement("script"); hm.src = "https://hm.baidu.com/hm.js?" + hmid; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s);})();
</script>
</head>
<body>
<noscript>
<strong>
很抱歉,如果没有 JavaScript 支持D2Admin 将不能正常工作。请启用浏览器的 JavaScript 然后继续。
</strong>
</noscript>
<div id="app">
<div class="d2-home">
<div class="d2-home__main">
<img
class="d2-home__loading"
src="./image/loading/loading-spin.svg"
alt="loading">
<div class="d2-home__title">
正在加载资源
</div>
<div class="d2-home__sub-title">
初次加载资源可能需要较多时间 请耐心等待
</div>
</div>
<div class="d2-home__footer">
<a
href="https://github.com/d2-projects/d2-admin"
target="_blank">
https://github.com/d2-projects/d2-admin
</a>
</div>
</div>
</div>
</body>
</html>