{extend name="common/common2" /} {block name="main"} <div class="ibox"> <div class="ibox-content"> <div class="row"> <div class="col-xs-12" > <form class="form-inline" id="form-search" action="{:url('index')}"> <div class="input-group"> <input style="width: 200px;" value="{$id}" type="text" class="form-control" name="imei" placeholder="设备号"> </div> <div class="input-group"> <input type="text" style="width: 150px;" readonly id="time" class="form-control" name="riqi" > </div> <div class="input-group"> <span class="input-group-btn"> <button class="btn-sm btn-primary" type="button" id ="search-btn" ><i class="fa fa-search"></i></button> </span> <span class="input-group-btn"> <button class="btn-sm btn-primary " type="button" id="search-clear"><i class="fa fa-undo"></i></button> </span> </div> </form> </div> </div> </div> <div class="ibox-content"> <div class="jqGrid_wrapper"> <table id="table" style="border-collapse: collapse"></table> <div id="pager"></div> </div> </div> </div> {/block} {block name="script"} <script type="text/javascript" src="/static/layDate-v5.0.9/laydate.js"></script> <script> $(function () { laydate.render({ elem: '#time' ,format: 'yyyy-MM-dd', trigger: 'click' , }); $(window).bind("resize",function(){ var width=$(".jqGrid_wrapper").width(); $("#table").setGridWidth(width); }); $.jgrid.defaults.styleUI="Bootstrap"; $("#table").jqGrid({ url:"{:url('index')}", datatype: "json", colModel:[ {label:'时间',name:'created_at',index:'created_at',width:40,editable: false,sortable: false}, {label:'检测间隔',name:'interval',index:'interval',width:50,editable: false,sortable: false}, {label:'检测次数',name:'total',index:'total',width:50,editable: false,sortable: false}, {label:'深睡时长(小时)',name:'deep_sleep',index:'deep_sleep',width:50,editable: false,sortable: false}, {label:'浅睡时长(小时)',name:'light_sleep',index:'light_sleep',width:50,editable: false,sortable: false}, {label:'清醒时长(小时)',name:'awake_time',index:'awake_time',width:50,editable: false,sortable: false}, {label:'睡眠总时长(小时)',name:'total_sleep',index:'total_sleep',width:50,editable: false,sortable: false}, ], rowNum:10, rowList:[10,20,30,50,100], pager: '#pager', sortname: 'id', viewrecords: true, autowidth:true, mtype: 'post', height: 'auto', emptyrecords: "暂无数据", sortorder: "desc", caption:"睡眠数据", loadComplete: function (xhr) { if(xhr.code==0){ layer.msg(xhr.msg); return false; } }, }); }); </script> {/block}