12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- {extend name="common/common2" /}
- {block name="main"}
- <div class="ibox">
- <div class="ibox-content">
- <div class="row">
- <div class="col-xs-12" style="text-align: right;">
- <form class="form-inline" id="form-search" action="{:url('index')}">
- <!--<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-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>
- $(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:'type',index:'type',width:50,editable: false,sortable: false,formatter:function (a,b,c){
- if(a == 1){
- return '专项保洁';
- } else{
- return '工单';
- }
- }},
- {label:'日期',name:'create_time',index:'create_time', width:60,sortable: false},
- {label:'使用人',name:'userName',index:'userName', width:80,sortable: false},
- {label:'操作',width:30,sortable: false,formatter: function (a, b, c) {
- var info_url = "{:url('info',[],'')}/id/"+c.id;
- var btn= '<a url="'+info_url+'" href="javascript:;" data-title="详情" onclick="layer_open(this,1)"><span class="label label-success" title="详情">详情</span></a>';
- return btn;
- }},
- ],
- rowNum:10,
- rowList:[10,20,30,50,100],
- pager: '#pager',
- sortname: 'id',
- viewrecords: true,
- autowidth:true,
- mtype: 'post',
- height: 'auto',
- emptyrecords: "暂无数据",
- sortorder: "desc",
- caption:"{$meta_title}",
- loadComplete: function (xhr) {
- if(xhr.code==0){
- layer.msg(xhr.msg);
- return false;
- }
- },
- });
- });
- </script>
- {/block}
|