Blame view

src/main/resources/templates/main.html 5.07 KB
tangying authored
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<html  lang="zh" xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <!--360浏览器优先以webkit内核解析-->
    <title>概况</title>
    <link rel="shortcut icon" href="favicon.ico">
    <link  th:href="@{/css/bootstrap.min.css}" rel="stylesheet"/>
    <link  th:href="@{/css/font-awesome.css}" rel="stylesheet"/>
    <link  th:href="@{/css/main/animate.min.css}" rel="stylesheet"/>
    <link  th:href="@{/css/main/style.min862f.css}" rel="stylesheet"/>
</head>

<body class="gray-bg">
huhai authored
16
17
18
19
20
<div class="col-sm-2" style="padding:5px;">
    <a class="menuItem" href="/wms/inventory/inventoryTransaction">
        <div class="total_box ys01">
            <h1 id="s1">-</h1>
            <p>今日库存交易量</p>
tangying authored
21
        </div>
huhai authored
22
23
24
    </a>
</div>
<div class="col-sm-2" style="padding:5px;">
25
    <a class="menuItem" href="/wms/receipt/receiptHeader/900/0">
huhai authored
26
27
28
        <div class="total_box ys02">
            <h1 id="s2">-</h1>
            <p>今日入库量</p>
tangying authored
29
        </div>
huhai authored
30
31
32
33
34
35
36
    </a>
</div>
<div class="col-sm-2" style="padding:5px;">
    <a class="menuItem" href="/wms/shipment/shipmentHeader">
        <div class="total_box ys03">
            <h1 id="s3">-</h1>
            <p>今日出库量</p>
tangying authored
37
        </div>
huhai authored
38
39
40
    </a>
</div>
<div class="col-sm-2" style="padding:5px;">
41
    <a class="menuItem" href="/wms/inventory/inventoryHeader">
huhai authored
42
43
44
        <div class="total_box ys04">
            <h1 id="s4">-</h1>
            <p>库存总量</p>
tangying authored
45
        </div>
huhai authored
46
47
48
    </a>
</div>
<div class="col-sm-2" style="padding:5px;">
49
    <a class="menuItem" href="/wms/inventory/inventoryHeader">
huhai authored
50
51
52
        <div class="total_box ys05">
            <h1 id="s5">-</h1>
            <p>库内物料品数</p>
tangying authored
53
        </div>
huhai authored
54
55
56
    </a>
</div>
<div class="col-sm-2" style="padding:5px;">
57
    <a class="menuItem" href="/wms/task/taskHeader?taskType=100">
huhai authored
58
59
60
61
62
63
64
65
        <div class="total_box ys06">
            <h1 id="s6">-</h1>
            <p>待执行任务数</p>
        </div>
    </a>
</div>
</div>
易文鹏 authored
66
<div class="row" style="padding:0 17px;">
huhai authored
67
68
69
70
71
72
73
74
    <div class="col-sm-6" style="padding:5px 5px 10px 5px;">
        <div class="float-e-margins">
            <div class="ibox-title"><h5>历史每日收发货量</h5></div>
            <div class="ibox-content">
                <div id="chart1" class="flot-chart1">
                    这里放图表
                </div>
            </div>
tangying authored
75
76
        </div>
    </div>
huhai authored
77
78
    <div class="col-sm-6" style="padding:5px 5px 10px 5px;">
        <div class="float-e-margins">
易文鹏 authored
79
            <div class="ibox-title"><h5>库存概况</h5></div>
huhai authored
80
            <div class="ibox-content">
易文鹏 authored
81
                <div id="chart4" class="flot-chart1">
huhai authored
82
83
84
85
86
87
88
89
90
91
92
93
94
95
                    这里放图表
                </div>
            </div>
        </div>
    </div>
    <div class="col-sm-6" style="padding:5px 5px 10px 5px;">
        <div class="float-e-margins">
            <div class="ibox-title"><h5>在线库存状态</h5></div>
            <div class="ibox-content">
                <div id="chart3" class="flot-chart1">
                    这里放图表
                </div>
            </div>
        </div>
tangying authored
96
    </div>
huhai authored
97
98
    <div class="col-sm-6" style="padding:5px 5px 10px 5px;">
        <div class="ibox float-e-margins">
易文鹏 authored
99
            <div class="ibox-title"><h5>库位利用率</h5></div>
huhai authored
100
            <div class="ibox-content">
易文鹏 authored
101
                <div id="chart2" class="flot-chart1">
huhai authored
102
103
104
105
106
107
                    这里放图表
                </div>
            </div>
        </div>
    </div>
</div>
tangying authored
108
huhai authored
109
110
111
112
113
114
115
116
117
118
<script th:src="@{/js/jquery.min.js}"></script>
<script th:src="@{/js/bootstrap.min.js}"></script>
<script th:src="@{/js/echarts/echarts.js}"></script>
<script>
    $(function () {
        refresh();
        setInterval("refresh()",60000);
    });
    //测试时弄个5s
    // self.setInterval("refresh()",5000);
tangying authored
119
huhai authored
120
121
122
123
    var chart1 = echarts.init(document.getElementById('chart1'));
    var chart2 = echarts.init(document.getElementById('chart2'));
    var chart3 = echarts.init(document.getElementById('chart3'));
    var chart4 = echarts.init(document.getElementById('chart4'));
tangying authored
124
huhai authored
125
126
127
128
129
130
131
132
133
134
135
136
137
    function refresh() {
        $.get("../index/getShipmentsLast7Days").done(function (data) {
            chart1.setOption(JSON.parse(data));
        })
        $.get("../index/getLocationProp").done(function (data) {
            chart2.setOption(JSON.parse(data));
        })
        $.get("../index/getInventoryStatus").done(function (data) {
            chart3.setOption(JSON.parse(data));
        })
        $.get("../index/getInventoryProp").done(function(data){
            chart4.setOption(JSON.parse(data));
        });
tangying authored
138
huhai authored
139
140
141
142
143
144
145
146
147
148
149
        $.get("../index/getCommonData").done(function (data) {
            if(data.code==200){
                $("#s1").text(data.data.bllCount)
                $("#s2").text(data.data.receiptTotal)
                $("#s3").text(data.data.shipmentTotal)
                $("#s4").text(data.data.inventoryTotal)
                $("#s5").text(data.data.materialCount)
                $("#s6").text(data.data.taskUncompletedTotal)
            }
        })
    }
tangying authored
150
huhai authored
151
</script>
tangying authored
152
153
</body>
</html>