| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 | {extend name="common/common2" /}{block name="main"}<div class="ibox-content"><div class="ibox">    <div class="alert">        <form action="daily" method="GET" id='search_form' class="form-inline">            <div class="input-group" style="width: 200px">                <span class="input-group-addon">开始时间</span>                <input class="form-control dialog-datetime" id="startTime" name="start" type="text" data-date-format="yyyy-mm-dd" value="{$start}" placeholder="" readonly/>            </div>            <div class="input-group" style="width: 200px">                <span class="input-group-addon">结束时间</span>                <input class="form-control dialog-datetime" id="endTime" name="end" type="text" data-date-format="yyyy-mm-dd" value="{$end}" placeholder="" readonly/>            </div>            <div class="input-group">            <span class="input-group-btn">                <button class="btn-sm btn-primary" type="submit"  ><i class="fa fa-search"></i></button>			</span>                 <span class="input-group-btn">                     <button class="btn-sm btn-warning" type="reset" onclick="empty_search()"><i class="fa fa-undo"></i></button>            </span>            </div>        </form>    </div>    <div class="panel-group">        <div class="panel panel-default">            <div class="panel-heading clearfix">                <div class="btn-group pull-left">                    日常工作统计                </div>            </div>            <div class="panel-body" id="printer">                <table class="table table-bordered">                    <thead>                    <tr>                        <th>ID</th>                        <th>任务地点名称</th>                        <th>工作记录(数量)</th>                    </tr>                    </thead>                    <tbody>                    {foreach $list as $k=>$v}                    <tr>                        <td>{$v['daily_id']}</td>                        <td>{$v['title']}</td>                        <td>{$v['count']}</td>                    </tr>                    {/foreach}                    </tbody>                </table>            </div>        </div>    </div></div></div>{/block}{block name="script"}<script src="/static/layDate-v5.0.9/laydate.js"></script><script src="/static/browser.js"></script><script src="/static/jquery.jqprint-0.3.js"></script><script>    $(function () {        laydate.render({            elem: '#startTime',            trigger: 'click',            theme: '#148d8f'        });        laydate.render({            elem: '#endTime',            trigger: 'click',            theme: '#148d8f'        });    });    function empty_search(){        window.location.href = 'daily';    }    function printer(){        $('#printer').jqprint();    }</script>{/block}
 |