You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

94 lines
2.4 KiB

5 years ago
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
<title>审核中</title>
<!--REM自适应布局JS-->
<script src="../../js/base/rem-layout.js"></script>
<link rel="stylesheet" type="text/css" href="../../../lib/css/mui.min.css">
<link href="../../../lib/css/basic.css" rel="stylesheet" />
<link rel="stylesheet" type="text/css" href="../../css/base.css" />
<script src="../../../lib/js/mui.min.js"></script>
<script src="../../../lib/js/app.js"></script>
<script src="../../../lib/js/require2.1.11.js"></script>
</head>
<style type="text/css">
body,
html,
.mui-content {
width: 100%;
height: 100%;
margin: 0;
}
#state-content {
position: absolute;
width: 100%;
height: calc(100% - 4rem);
display: flex;
justify-content: center;
align-items: center;
}
#state-content>div {
display: flex;
flex-direction: column;
align-items: center;
}
#state-content span:nth-child(2) {
padding: 0.7rem 0 0.4rem 0;
font-size: 0.6rem;
}
#state-content span:nth-child(3) {
font-size: 0.25rem;
color: #666666;
}
.gray {
-webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
-ms-filter: grayscale(100%);
-o-filter: grayscale(100%);
filter: grayscale(100%);
filter: gray;
}
</style>
<body>
<header class="mui-bar mui-bar-nav app-header app-header-darkly">
<a class="mui-action-back mui-icon mui-icon-left-nav mui-pull-left"></a>
<h1 class="mui-title" data-text="StateUnderTitle">审核中</h1>
</header>
<div class="mui-content">
<div id="state-content">
<div class="app-text-color">
<img class="gray" src="../../img/logo.png" style="width: 1.4rem;" />
<span data-text="StateUnderTitle">审核中</span>
<span data-text="StateUnderInfo">审核将在1~5个工作日后完成,请耐心等待</span>
</div>
</div>
</div>
</body>
<script type="text/javascript">
appLanguageFun();
/**
* 国际化方法
*/
function appLanguageFun() {
var dataTextArray = document.querySelectorAll("[data-text]");
var type = app.getLanguageLocalStorage();
require(['../../js/language/' + type], function(dataBase) {
dataTextArray.forEach(dom => {
var name = dom.getAttribute("data-text");
dom.innerText = dataBase[name] || "";
})
})
}
</script>
</html>