mirror of
https://github.com/lan-tianxiang/JS_TOOL.git
synced 2025-07-14 11:32:36 +08:00
更新于 07-07 02:51 新增首页使用数
This commit is contained in:
@ -35,6 +35,7 @@
|
|||||||
<!--<a style="color:#00effb;font-weight:bold"> [全自动运行]</a>-->
|
<!--<a style="color:#00effb;font-weight:bold"> [全自动运行]</a>-->
|
||||||
<br /> <a style="font-size:12px;"> App确认后即可(无视升级提示)</a>
|
<br /> <a style="font-size:12px;"> App确认后即可(无视升级提示)</a>
|
||||||
<br /> <a style="font-size:12px;">未添加过的用户会自动新增账号,若已添加则会自动更新有效期(一个月)</a>
|
<br /> <a style="font-size:12px;">未添加过的用户会自动新增账号,若已添加则会自动更新有效期(一个月)</a>
|
||||||
|
<br /> <a id="UserNum" style="font-size:12px;"></a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<div class="more">
|
<div class="more">
|
||||||
@ -127,6 +128,15 @@ $(document).ready(function () {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function GetUserCount() {
|
||||||
|
let timeStamp = new Date().getTime();
|
||||||
|
$.get('./GetUserCount?t=' + timeStamp, function (data) {
|
||||||
|
if (data.err == 0) {
|
||||||
|
document.getElementById("UserNum").innerHTML=data.msg;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
function JumpToApp() {
|
function JumpToApp() {
|
||||||
let timeStamp = new Date().getTime();
|
let timeStamp = new Date().getTime();
|
||||||
$.get('./qrcode?t=' + timeStamp, function (data) {
|
$.get('./qrcode?t=' + timeStamp, function (data) {
|
||||||
@ -174,6 +184,8 @@ $(document).ready(function () {
|
|||||||
clearInterval(timeId);
|
clearInterval(timeId);
|
||||||
do_landing();
|
do_landing();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
GetUserCount();
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
</html>
|
</html>
|
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user