| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 | {extend name="common/common2" /}{block name="main"}<div class="ibox-content"><div class="row">    <div class="col-sm-12">        <div class="ibox float-e-margins">            <h5>{$meta_title}</h5>            <div class="panel-body" id="printer">                <table class="table table-bordered">                    <thead>                    <tr>                        <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>                    </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>                    </tr>                    </tbody>                </table>            </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',            theme:'#148d8f'        });    })</script>{/block}
 |