1
13693261870
2024-04-26 fce95773a34c42f36af4372df043b144b72d6438
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
<!DOCTYPE html>
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
    <title></title>
    <meta charset="utf-8" />
    <link rel="stylesheet" href="css/zaihai.css" />
    <style>
        .title{
            height:18%;
        }
        .tcenter{
            height:80%;
        }
        
    </style>
 
</head>
<body>
    <div class="border">
        <div class="FourBorder">
            <div class="topleft"></div>
            <div class="topright"></div>
            <div class="bottomleft"></div>
            <div class="bottomright"></div>
        </div>
        <div class="content">
            <div class="title">
                <table>
                    <tr>
                        <td>
                            <span class="zhname">属性信息</span>
                            <img class="imgx" src="img/关闭.png" />
                        </td>
                    </tr>
                </table>
            </div>
            <div class="tcenter">
                <table>
                    <tr>
                        <td>一级名称</td>
                        <td class="fir"></td>
                    </tr>
                    <tr>
                        <td>二级名称</td>
                        <td class="sen"></td>
                    </tr>
                    <tr>
                        <td>三级名称</td>
                        <td class="Tid"></td>
                    </tr>
                    <tr>
                        <td>面积</td>
                        <td class="mj"></td>
                    </tr>
                </table>
            </div>
            </div>
        </div>
            <script type="text/javascript" src="../Commonjs/jquery-1.8.2.min.js"></script>
            <script type="text/javascript" src="../Commonjs/GetParm.js"></script>
            <script type="text/javascript">
                sgworld = window.external.createSgworld();
                $(function () {
                    var firstName = decodeURI(getUrlParam("Fir"));
                    var secondName = decodeURI(getUrlParam("Sen"));
                    var thirdName = decodeURI(getUrlParam("Tid"));
                    var val = getUrlParam("val");
                    //alert(firstName);
                    $(".fir").text(firstName);
                    $(".sen").text(secondName);
                    if (thirdName == null | thirdName == "" | thirdName == "undefined") {
                        $(".Tid").text("");
                    } else {
                        $(".Tid").text(thirdName);
                    }
 
                    $(".mj").text(parseFloat(val).toFixed(2));
                    $(".imgx").click(function () {
                        window.external.closeDialog("中间");
                    })
                })
 
            </script>
</body>
</html>