1
Surpriseplus
2022-10-14 6d536dea3cec157947947aa075bebde4305f29b9
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
<!DOCTYPE html>
<html lang="en">
 
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<script src="./../JS/jquery-1.8.2.min.js"></script>
<style>
    body,
    html {
        height: 100%;
        width: 100%;
        margin: 0;
        overflow: hidden;
        padding: 0;
    }
    
    #MeasureMenu {
        height: 100%;
        width: 100%;
        background: rgba(25, 83, 189, 1);
    }
    
    .measure_div {
        padding-left: 10px;
        padding-top: 10px;
        padding-bottom: 10px;
        color: white;
        font-weight: bolder;
        width: 70px;
        text-align: center;
    }
    
    .image {
        width: 46px;
        height: 46px;
    }
</style>
 
<body>
    <div id="MeasureMenu">
        <div class="measure_div" onclick="showrightmenu(1)">
            <img src="./../Image/right/测量 (1).png" class="image" alt=""><br>
            <span>距离测量</span>
        </div>
        <div class="measure_div" onclick="showrightmenu(2)">
            <img src="./../Image/right/圆角矩形 6 拷贝 4.png" class="image" alt=""><br>
            <span>面积测量</span>
        </div>
        <div class="measure_div" onclick="showrightmenu(3)">
            <img src="./../Image/right/矩形 16 拷贝 9.png" class="image" alt=""><br>
            <span>高度高差</span>
        </div>
 
    </div>
    <script>
        var sgworld = window.external.createSgworld();
 
        function showrightmenu(result) {
            if (result == 1) {
                window.external.loadMainWebFunc('showbottomtool', 'b4');
            } else if (result == 2) {
                window.external.loadMainWebFunc('showbottomtool', 'b5');
            } else if (result == 3) {
                sgworld.Command.Execute(1036, 0);
            }
        }
    </script>
</body>
 
</html>