页面稍微适配下移动端

新增登陆验证码一分钟内只能尝试三次
This commit is contained in:
yutou
2021-02-23 11:16:56 +08:00
parent f93ae1e20e
commit f4cabd1155
6 changed files with 77 additions and 59 deletions

View File

@@ -32,7 +32,7 @@
$('#side').load("/html/body/nas/side.html");
$.get("/login/check.do", function (data) {
let json = JSON.parse(data);
if (json.code != 0) {
if (json.code !== 0) {
window.location.href = "/"
}
})