123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- {extend name="common/common2" /}
- {block name="main"}
- <div class="ibox">
- <div class="ibox-content">
- <div class="row">
- <div class="col-xs-3">
- </div>
- <div class="col-xs-9" style="text-align: right;">
- <form class="form-inline" id="form-search" action="{:url('index')}">
- <div class="input-group">
- <input type="text" id="start" readonly class="form-control" name="start" placeholder="开始日期">
- </div>
- <div class="input-group">
- <input type="text" id="end" readonly class="form-control" name="end" placeholder="结束日期">
- </div>
- <div class="input-group">
- <input type="text" class="form-control" name="title" placeholder="名称">
- </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-warning" 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 src="/static/layDate-v5.0.9/laydate.js"></script>
- <script>
- laydate.render({
- elem: '#start',
- trigger: 'click' ,
- theme:'#284a94'
- });
- laydate.render({
- elem: '#end',
- trigger: 'click' ,
- theme:'#284a94'
- });
- </script>
- <script>
- $(function () {
- $(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:'real_name',index:'real_name', width:50,sortable: false},
- {label:'考勤组',name:'group_name',index:'group_name', width:50,sortable: false},
- {label:'打卡方式',name:'type',index:'type',width:50,editable: false,sortable: false,formatter:function (a,b,c){
- if(a == 1){
- return '<span>手机打卡</span>';
- }else if(a == 2){
- return '<span>流程打卡</span>';
- }else if(a == 3){
- return '<span>考勤机打卡</span>';
- }else {
- return '<span>管理员修改</span>';
- }
- }},
- {label:'考勤日期',name:'day',index:'day',width:50,editable: false,sortable: false},
- {label:'考勤时间',name:'kq_time',index:'kq_time',width:80,editable: false,sortable: false},
- {label:'打卡时间',name:'create_time',index:'create_time',width:80,editable: false,sortable: false},
- {label:'打卡结果',name:'result',index:'result',width:100,editable: false,sortable: false},
- {label:'打卡设备',name:'form',index:'form',width:80,editable: false,sortable: false},
- {label:'打卡地点',name:'address',index:'address',width:80,editable: false,sortable: false},
- {label:'备注',name:'remark',index:'remark',width:60,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: "asc",
- caption:"考勤记录列表",
- loadComplete: function (xhr) {
- if(xhr.code==0){
- layer.msg(xhr.msg);
- return false;
- }
- },
- });
- });
- </script>
- {/block}
|