-
Notifications
You must be signed in to change notification settings - Fork 0
/
selectmonth.html
84 lines (81 loc) · 2.89 KB
/
selectmonth.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>月度查询</title>
</head>
<body>
<div class="container">
<div>
<h4>首页>>数据查询>>月度查询</h4>
</div>
</div>
<div class="container selcct-title">
<div class="select-div">
<span class="select-city">
<label for="">城市</label>
<input class="form-control select-city-input" value="成都市" type="text" placeholder="城市">
</span>
<span class="select-shangquan">
<label for="">商圈</label>
<select class="form-control select-city-input">
</select>
</span>
<span class="select-year">
<label for="">年度</label>
<select class="form-control select-city-input" id="select-year">
<option value="2018">2018</option>
<option value="2019">2019</option>
<option value="2020">2020</option>
<option value="2021">2021</option>
<option value="2022">2022</option>
<option value="2023">2023</option>
<option value="2024">2024</option>
<option value="2025">2025</option>
<option value="2026">2026</option>
<option value="2027">2027</option>
<option value="2028">2028</option>
<option value="2029">2029</option>
<option value="2030">2030</option>
</select>
</span>
<span class="select-month">
<label for="">月度</label>
<select class="form-control select-city-input" id="month-select">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
<option value="8">8</option>
<option value="8">9</option>
<option value="10">10</option>
<option value="11">11</option>
<option value="12">12</option>
</select>
</span>
<button class="btn btn-default select-btn-select" type="button" onclick="selectmonth()">查询</button>
<button class="btn btn-default select-btn-select" type="button" onclick="downmonth()">下载<a href="#" id="linkmontha" download ></a></button>
</div>
</div>
<div class="container select-table">
<table class="table table-bordered table-hover">
<thead>
<tr>
<th>月份</th>
<th>均价</th>
<th>出租率</th>
<th>营业收入</th>
<th>客户收入</th>
<th>餐饮收入</th>
<th>康乐收入</th>
</tr>
</thead>
<tbody class="table-month">
</tbody>
</table>
</div>
</body>
</html>