1
13693261870
2023-06-27 028048b8c540335923d1ac13d74daa8b92fcb7d6
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!DOCTYPE >
 
<html>
  <head>
    <meta charset="utf-8" />
    <title>信息弹窗</title>
 
    <style>
      .box {
        padding: 20px;
        width: 90%;
 
        background: url('./UE/img/background.png') no-repeat center;
        background-size: 100% 100%;
        position: absolute;
        padding: 1%;
        float: left;
      }
 
      .BoxOne {
        float: left;
        padding: 5px;
        width: 98%;
        /* height: 32px; */
 
        line-height: 40px;
        margin: 5px;
      }
 
      .titleOne {
        font-family: 'JDLangZhengTi';
        font-style: normal;
        font-weight: bolder;
        font-size: 25px;
        line-height: 30px;
        color: #ffffff;
        float: left;
      }
 
      .titleTwo {
        font-family: 'JDLangZhengTi';
        font-style: normal;
        font-weight: bolder;
        font-size: 25px;
        line-height: 22px;
        color: #00ffcb;
      }
 
      .titleThree {
        font-family: 'JDLangZhengTi';
        font-style: normal;
        font-weight: bolder;
        line-height: 25px;
        font-size: 30px;
        color: #ffffff;
      }
 
      .titleFour {
        font-family: 'JDLangZhengTi';
        font-style: normal;
        font-weight: bolder;
        font-size: 25px;
        line-height: 15px;
        color: #ffffff;
        float: left;
      }
    </style>
    <script>
      function getQueryString(name) {
        var reg = new RegExp('(^|&)' + name + '=([^&]*)(&|$)', 'i')
        var r = window.location.search.substr(1).match(reg)
        if (r != null) {
          return decodeURI(r[2])
        }
 
        return ''
      }
 
      window.onload = function () {
        var arr = ['name', 'mode', 'unit', 'output', 'usage', 'rate', 'num']
        for (var i = 0, c = arr.length; i < c; i++) {
          document.getElementById(arr[i]).innerHTML = getQueryString(arr[i])
        }
      }
    </script>
  </head>
 
  <body>
    <div class="box">
      <div class="BoxOne">
        <div id="name" class="titleOne headOne">北工大软件园•荣京道</div>
        <div class="titleThree" style="float: right; margin-right: 20px">
          亿元
        </div>
        <div id="output" class="titleTwo" style="float: right">326.7</div>
      </div>
      <div class="BoxOne">
        <div class="titleFour" style="width: 50%">入住企业数量</div>
        <div class="titleFour" style="width: 50%">楼宇空置率</div>
      </div>
      <div class="BoxOne">
        <div class="titleOne" style="width: 50%">
          <div id="rate" class="titleTwo" style="float: left">32</div>
          <div class="titleThree" style="float: left">家</div>
        </div>
        <div class="titleOne" style="width: 50%">
          <div id="num" class="titleTwo" style="float: left">54</div>
          <div class="titleThree" style="float: left">%</div>
        </div>
      </div>
      <div class="BoxOne">
        <div class="titleFour" style="width: 50%">用地性质</div>
        <div class="titleFour" style="width: 50%">经营方式</div>
      </div>
      <div class="BoxOne">
        <div class="titleOne" style="width: 50%">
          <div class="titleTwo" style="float: left"></div>
          <div id="usage" class="titleTwo" style="float: left">
            商业金融业用地/信托投资
          </div>
        </div>
        <div class="titleOne" style="width: 50%">
          <div id="mode" class="titleTwo" style="float: left">出租</div>
        </div>
      </div>
      <div class="BoxOne">
        <div class="titleFour" style="color: rgba(255, 255, 255, 0.65)">
          开发单位
        </div>
        <div id="unit" class="titleFour" style="width: 70%">
          北京经开张湾置业有限公司
        </div>
      </div>
    </div>
  </body>
</html>