#
luxiaotao1123
2022-01-03 c07eafd8248f9035d3c72b298caf92128c3c92b5
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html lang="en">
    <head>
        <title></title>
        <meta charset="utf-8">
        <meta name="generator" content="Three.js Editor">
        <meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
        <link rel="stylesheet" href="../static/css/main.css">
        <link rel="stylesheet" href="../static/css/index.css">
        <link rel="stylesheet" href="../static/css/loader.css" media="all">
        <script type="text/javascript" src="../static/js/lib/jquery-3.3.1.min.js"></script>
        <script type="text/javascript" src="../static/js/lib/echarts.min.js"></script>
        <script type="text/javascript" src="../static/js/utils.js"></script>
        <script type="text/javascript" src="../static/js/common.js"></script>
        <script type="text/javascript" src="../static/js/data/Asrs.js"></script>
        <script type="text/javascript" src="../static/js/object/Cube.js"></script>
        <script type="text/javascript" src="../static/js/object/StoreArea.js"></script>
        <script type="text/javascript" src="../static/js/object/Store.js"></script>
        <script type="text/javascript" src="../static/js/object/StoreGroup.js"></script>
        <script type="text/javascript" src="../static/js/object/StoreGoods.js"></script>
        <script type="text/javascript" src="../static/js/object/Route.js"></script>
        <script type="text/javascript" src="../static/js/object/CrnTask.js"></script>
        <script type="text/javascript" src="../static/js/object/Floor.js"></script>
        <script type="text/javascript" src="../static/js/data/btnHide.js"></script>
    </head>
    <body style="position: relative">
    <!--初始化加载层-->
    <div class="layuimini-loader">
        <div class="layuimini-loader-inner"></div>
    </div>
 
    <div class="sidebar">
            <img id="fps" class="buttonClass" title="性能调试" src="../static/img/icon/fps.svg">
            <img id="skyBox" class="buttonClass" title="更改背景" src="../static/img/icon/skyBox.svg">
<!--            <img id="store" class="buttonClass" title="显示仓库" src="../static/img/icon/store.svg">-->
<!--            <img id="group" class="buttonClass" title="显示巷道" src="../static/img/icon/group.svg">-->
<!--            <img id="shelf" class="buttonClass" title="显示架子" src="../static/img/icon/shelf.svg">-->
<!--            <img id="reset" class="buttonClass" title="复位场景" src="../static/img/icon/reset.svg">-->
            <img id="tour" class="buttonClass" title="游览厂区&#10;前进:W&#10;后退:S&#10;左:A&#10;右:D&#10;跳跃:Space" src="../static/img/icon/tour.svg">
<!--            <img id="temperature" class="buttonClass" title="车间温度" src="../static/img/icon/temperature.svg">-->
<!--            <img id="roomRate" class="buttonClass" title="库房利用率" src="../static/img/icon/roomRate.svg">-->
        </div>
        <div id="groundglass"></div>
        <div id="sidebar">
            <p1>中扬-智能立体仓库</p1>
            <p2>ZhongYang Intelligent Three-Dimensional Warehouse</p2>
            <div id="Histogram"></div>
            <div id="baobiao2"></div>
            <div id="btnhide_m"></div>
            <button id="btnhide" onclick="sidebar()">隐藏</button>
            <div class="tablebox">
                <div class="tbl-header">
                    <table border="0" cellspacing="0" cellpadding="0" >
                        <thead>
                        <tr>
                            <th>排名</th>
                            <th>地市</th>
                            <th>销售收入(万元)</th>
                            <th>同比(%)</th>
                        </tr>
                        </thead>
                        <tbody style="opacity:0;" ></tbody>
                    </table>
                </div>
                <div class="tbl-body">
                    <table border="0" cellspacing="0" cellpadding="0">
                        <thead>
                        <tr>
                            <th>排名</th>
                            <th>地市</th>
                            <th>销售收入(万元)</th>
                            <th>同比(%)</th>
                        </tr>
                        </thead>
                        <tbody></tbody>
                    </table>
                </div>
            </div>
        </div>
        <div id="container"></div>
        <script type="module">
 
            import * as THREE from '../static/js/three.module.js';
            import { APP } from '../static/js/app.js';
 
            window.THREE = THREE;
 
            var player = new APP.Player();
            player.start();
 
            document.getElementById("fps").addEventListener('click', function () {
                player.changeStats();
            }, false);
            document.getElementById("skyBox").addEventListener('click', function () {
                player.changeBackGround();
            }, false);
            document.getElementById("tour").addEventListener('click', function () {
                player.lockControl();
            }, false)
 
            $('.layuimini-loader').fadeOut();
 
        </script>
 
 
    </body>
</html>