Files
mes-ui-d2/public/index.html
liyang 513ad831bf 统计代码格式更新
Former-commit-id: 8e10a5999f2a1bcc37fb5d61fc50ddc74acca0e2 [formerly 8e10a5999f2a1bcc37fb5d61fc50ddc74acca0e2 [formerly 8e10a5999f2a1bcc37fb5d61fc50ddc74acca0e2 [formerly 8e10a5999f2a1bcc37fb5d61fc50ddc74acca0e2 [formerly 247e554423f3f6a6900fd867238cec39ccd62d66 [formerly 92d32aea9cec22c519ebc4ff0c6992a6016d56c4]]]]]
Former-commit-id: 810548222bba0ac5e20c0b2b3fdadee774e01a88
Former-commit-id: ad50a545797938cf79d1704f76e978037662fb5c
Former-commit-id: 58d1591cb2abe1ba68ab9edc7ccc89b6b2845596 [formerly 2c187578c9fe4b87fc7d9e3a113691d6a64ec146]
Former-commit-id: a5d97a7223be84aa1a7404bce98ae25109eabdf7
Former-commit-id: 2bd19e77bd9d2d38952281022d5019588fbd2b4e
Former-commit-id: d75f3ebd2b47ed9f3fcd7dac5df640342aff82ac
Former-commit-id: 5d50253c606a0e56b230062b94ef5925518b0fb4
Former-commit-id: 0a932e06a90e725f75a8c22579c296f931f3e04b
2018-10-26 09:57:10 +08:00

59 lines
2.3 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>
<!-- ua -->
<script src="<%= BASE_URL %>script/ua-parser.min.js"></script>
<script src="<%= BASE_URL %>script/ua.js"></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>