zhitong.yu
2024-12-27 8abbee975353926e51a426a75c67119337fbdae4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<%--
  Created by IntelliJ IDEA.
  User: Dell
  Date: 2023/12/19
  Time: 13:59
  To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>Title</title>
    <link rel="stylesheet" href="/hxzkuwb/view/CSS/layui.css">
    <link rel="stylesheet" href="/hxzkuwb/view/CSS/layer.css">
    <link rel="stylesheet" href="ShouYeEchats/bootstrap.min.css" />
    <link rel="stylesheet" href="ShouYeEchats/styles.css" />
</head>
<body style="">
<div class="layui-container" style="width: 100%;margin: 0px;padding: 0px">
    <div class="layui-row">
        <div class="layui-col-xs12 layui-col-md12" style="margin-top: 20px;text-align: center">
            <div style="background: url('Img/back1.png');background-size: 100% 100%;width: 20%;height: 19%;display: inline-block;border-radius: 5px;overflow: hidden;color: white">
                <span style="display: block;margin-top: 10%;font-size: 45px" class="login">0</span>
                <span style="display: inline-block" id="Title1">今日登录</span>
            </div>
            <div style="background: url('Img/back2.png');margin-left: 3%;background-size: 100% 100%;width: 20%;height: 19%;display: inline-block;border-radius: 5px;overflow: hidden;color: white">
                <span style="display: block;margin-top: 10%;font-size: 45px" class="tag">0</span>
                <span style="" id="Title2">当前在线</span>
            </div>
            <div style="background: url('Img/back3.png');margin-left: 3%;background-size: 100% 100%;width: 20%;height: 19%;display: inline-block;border-radius: 5px;overflow: hidden;color: white">
                <span style="display: block;margin-top: 10%;font-size: 45px" class="baowen">0</span>
                <span style="" id="Title3">今日报文</span>
            </div>
            <div style="background: url('Img/back4.png');margin-left: 3%;background-size: 100% 100%;width: 20%;height: 19%;display: inline-block;border-radius: 5px;overflow: hidden;color: white">
                <span style="display: block;margin-top: 10%;font-size: 32px;position: relative;top: 0.3vh" class="heart"></span>
                <span style="position: relative;top: 1.6vh" id="Title4">引擎心跳时间</span>
            </div>
        </div>
    </div>
</div>
</body>
<script src="/hxzkuwb/HouTai/Js/jquery-3.5.1.js"></script>
<script>
    $.ajaxSetup({
        headers: {
            'x-access-token': localStorage.getItem("hxzkmars3d")
        }
    });
    var data = "page=1&limit=1"
    $.get("/hxzkuwb/findTagOnline",function (data){
        $(".tag").text(data)
    })
    $.get("/hxzkuwb/findJinRiLog",function (data){
        $(".login").text(data)
    })
    $.get("/hxzkuwb/findBaoWenTongJi",data,function (data){
        $(".baowen").text(data.nums)
    })
 
    var languages;
    window.addEventListener('load', function() {
        $.post("/hxzkuwb/FindSetting",function (data){
            languages = data[0].languages
                $("#Title1").text("今日登录")
                $("#Title2").text("当前在线")
                $("#Title3").text("今日报文")
                $("#Title4").text("引擎心跳时间")
        })
    })
 
</script>
</html>