1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <!-- include 'header' -->
- <link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" />
- <script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
- <script src="<?= WEB_SITE_GLOBAL ?>/js/jquery.ui.core.js"></script>
- <script src="<?= WEB_SITE_GLOBAL ?>/js/jquery.ui.widget.js"></script>
- <script src="<?= WEB_SITE_GLOBAL ?>/js/jquery.ui.position.js"></script>
- <script src="<?= WEB_SITE_GLOBAL ?>/js/jquery.ui.autocomplete.js"></script>
- <script>
- $(function() {
- $('select[fnCidData]').change(function() {
- $("#statistics").submit();
- });
- })
- </script>
- <body>
- <div class="mainLayout">
- <div class="mainMenu">
- <div class="menuItem">
- <a href="/" class="mLogo">CLD</a>
- <ul>
- <!-- include 'menu' -->
- </ul>
- </div>
- </div>
- <div class="warpContent">
- <div class="contactTab">
- <a href="/keyonline">公共锁库</a>
- <a class="now" href="#">使用统计</a>
- <div class="searchItem"><input type="text" placeholder="输入锁号进行搜索"><input type="button" class="subBtn" value="搜索"><input value="新锁" class="subBtn add" type="button" onclick="javascrtpt:window.location.href='admin-addlock.html'"></div>
- </div>
-
- <div class="lockDatabase fL autoHeight">
-
- <form id="statistics" action="/statistics" method="get" >
- <select name="cidKey" fnCidData >
- <!-- loop category -->
- <option <!-- if {{cid}}=={{category' value.cid}} --> selected <!-- endif --> value="{{category' value.cidKey}}">{{category' value.title}}</option>
- <!-- endloop -->
- </select>
- </form>
-
- <table class="table table-bordered table-condensed table-hover" style="margin:5px">
- <thead>
- <tr>
- <th rowspan="2" >办事处</th><th rowspan="2">员工</th><th colspan="3" class="taC">锁统计</th>
- </tr>
- <tr>
- <th title="接收">未使用</th><th title="销售、赠送、借出、升级、收回、更换">已使用</th><th>合计</th>
- </tr>
- </thead>
- <tbody>
- <!-- loop staffList -->
- <tr>
- <td>{{staffList' value.category}}</td>
- <td>{{staffList' value.username}}</td>
- <td>{{staffList' value.b}}</td>
- <td>{{staffList' value.a}}</td>
- <td>{{staffList' value.sum}}</td>
- </tr>
- <!-- endloop -->
-
- </tbody>
- </table>
- </div>
- <div class="lockDetil fL">
- </div>
- </div>
- </div>
- <script type="text/javascript">autoFlashHeight();</script>
- </body>
|