|
@@ -0,0 +1,86 @@
|
|
|
+<@override name="head">
|
|
|
+<title>热点详情管理</title>
|
|
|
+<script type="text/javascript" src="${ctx}/assets/js/common/table.js"></script>
|
|
|
+<script type="text/javascript" src="${ctx}/assets/js/back/apApmacForDownList.js"></script>
|
|
|
+<script type="text/javascript" src="${ctx}/assets/js/back/apApmac.js"></script>
|
|
|
+</@override>
|
|
|
+<@override name="body">
|
|
|
+<div id=content_bg>
|
|
|
+ <#include "/back/main/public-head.ftl">
|
|
|
+ <div id= "pagecontent">
|
|
|
+ <div id="content">
|
|
|
+ <div id="navDiv">
|
|
|
+ <ul id="navDiv_ul">
|
|
|
+ <li><i class="icon-home"></i></li>
|
|
|
+ <li><a href="${ctx}/back/main/dashboard">首页</a></li>
|
|
|
+ <li><i class="icon-angle-right"></i></li>
|
|
|
+ <li class="navDiv_currentLi">热点分布查询</li>
|
|
|
+ </ul>
|
|
|
+ </div>
|
|
|
+ <form id="myform" action="${ctx}/back/main/ap/apmac/wifisum" method="post">
|
|
|
+ <div id="content_choose">
|
|
|
+ <ul id="main_cnul">
|
|
|
+ <li class="select_box" id="cnul_box">
|
|
|
+ <span id="cnul_span">${cn!}</span>
|
|
|
+ <ul class="son_ul" id="cn_son_ul"></ul>
|
|
|
+ </li>
|
|
|
+ </ul>
|
|
|
+ <input type="hidden" name="cn" id="cn" value="${cn!}"/>
|
|
|
+ <ul id="main_cnCityul">
|
|
|
+ <li class="select_box" id="cnCityul_box">
|
|
|
+ <span id="cnCityul_span">${cnCity!}</span>
|
|
|
+ <ul class="son_ul" id="cnCityul_son_ul"></ul>
|
|
|
+ </li>
|
|
|
+ </ul>
|
|
|
+ <input type="hidden" name="cnCity" id="cnCity" value="${cnCity!}"/>
|
|
|
+ <ul id="main_placeIdul">
|
|
|
+ <li class="select_box" id="placeIdul_box">
|
|
|
+ <span id="placeIdul_span">${placeName!}</span>
|
|
|
+ <ul class="son_ul" id="placeIdul_son_ul"></ul>
|
|
|
+ </li>
|
|
|
+ </ul>
|
|
|
+ <input type="hidden" name="placeId" id="placeId" value="${placeId!}"/>
|
|
|
+ <input type="hidden" name="placeName" id="placeName" value="${placeName!}"/>
|
|
|
+ <input id="btn_formSubmit" type="submit" value="查询"/>
|
|
|
+ <div id="searchValueDiv">
|
|
|
+ <input type="hidden" id="page" name="page" value="${pager.page}"/>
|
|
|
+ <input id="searchValue" type="text" name="searchValue" value="${searchValue!}" tabindex="1"/>
|
|
|
+ <input id="serachData_img" type="submit" value=""/>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <table border="1" class="tableApmacOther">
|
|
|
+ <thead>
|
|
|
+ <tr class="theadTr">
|
|
|
+ <th class="theadTh" style="width:3%;"><div class="checkboxStyleTh"></div></th>
|
|
|
+ <th class="theadTh" style="width:3%;">省</th>
|
|
|
+ <th class="theadTh" style="width:3%;">市</th>
|
|
|
+ <th class="theadTh" style="width:7%;">数聚场景</th>
|
|
|
+ <th class="theadTh" style="width:14%;">热点个数</th>
|
|
|
+ </tr>
|
|
|
+ </thead>
|
|
|
+ <tbody>
|
|
|
+ <#if wifiSumList ??>
|
|
|
+ <#list wifiSumList as wifiSum>
|
|
|
+ <tr id="tbodyTr">
|
|
|
+ <td class="tbodyTd"><div class="checkboxStyleTd"></div></td>
|
|
|
+ <td class="tbodyTd">${wifiSum.cn!}</td>
|
|
|
+ <td class="tbodyTd">${wifiSum.cnCity!}</td>
|
|
|
+ <td class="tbodyTd">${wifiSum.placeName!}</td>
|
|
|
+ <td class="tbodyTd">${wifiSum.sum!}</td>
|
|
|
+ </tr>
|
|
|
+ </#list>
|
|
|
+ </#if>
|
|
|
+ </tbody>
|
|
|
+ </table>
|
|
|
+ <div id="exportReport">
|
|
|
+ <a id="exportExcel" class="btn_export" href="javascript:void(0);" onclick="exportExcel_wifiSum()">导出Excel</a>
|
|
|
+ </div>
|
|
|
+ <div id="pageDiv">
|
|
|
+ <#include "/common/pagination/simple.ftl"/>
|
|
|
+ </div>
|
|
|
+ </form>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</div>
|
|
|
+</@override>
|
|
|
+<@extends name="/common/simple.ftl"/>
|