12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- {extend name="common/common2" /}
- {block name="main"}
- <div class="row">
- <div class="col-sm-12">
- <div class="ibox float-e-margins">
- <div class="ibox-title">
- <h5>{$meta_title}</h5>
- </div>
- <div class="panel-group">
- <div class="panel panel-default">
- <div class="panel-body" id="printer">
- <table class="table table-bordered">
- <thead>
- <tr>
- <th>智慧点</th>
- <th>总数</th>
- <th>本月</th>
- <th>本周</th>
- <th>今天</th>
- <th>今天未完成</th>
- </tr>
- </thead>
- <tbody>
- {foreach $data['list'] as $k=>$v}
- <tr>
- <td>{$v.title}</td>
- <td>{$v['count']}</td>
- <td>{$v['count1']}</td>
- <td>{$v['count2']}</td>
- <td>{$v['count3']}</td>
- <td><span class="text-danger">{$v['count4']}</span></td>
- </tr>
- {/foreach}
- <tr>
- <td style="text-align: right;"><strong>合计</strong></td>
- <td>{$data['count']}</td>
- <td>{$data['count1']}</td>
- <td>{$data['count2']}</td>
- <td>{$data['count3']}</td>
- <td><span class="text-danger">{$data['count4']}</span></td>
- </tr>
- </tbody>
- </table>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- {/block}
- {block name="script"}
- <script src="/static/echarts.js"></script>
- <script src="/static/browser.js"></script>
- <script src="/static/layDate-v5.0.9/laydate.js"></script>
- <script type="text/javascript">
- function empty_search(){
- window.location.href = 'duration';
- }
- $(function () {
- laydate.render({
- elem: '#dialog-datetime1'
- ,type: 'month'
- });
- })
- </script>
- {/block}
|