123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- {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('showfee')}">
- <div class="input-group">
- <input type="text" class="form-control" name="xq_title" placeholder="小区">
- </div>
- <div class="input-group">
- <input type="text" class="form-control" name="title" placeholder="名称">
- </div>
- <div class="input-group">
- <input type="text" class="form-control" name="name" placeholder="业主">
- </div>
- <div class="input-group">
- <input type="text" class="form-control" name="card" placeholder="身份证">
- </div>
- <div class="input-group">
- <select name="enable" class="form-control">
- <option value="">选择状态</option>
- <option value="0">禁用</option>
- <option value="1">正常</option>
- </select>
- </div>
- <div class="input-group">
- <select name="cate" class="form-control">
- <option value="">资源属性</option>
- <option value="1">住房</option>
- <option value="2">商铺</option>
- <option value="3">营业房</option>
- <option value="4">储藏室</option>
- <option value="5">停车位</option>
- </select>
- </div>
- <div class="input-group">
- <select name="c_type" class="form-control">
- <option value="">类型</option>
- {foreach $cType as $k=>$v}
- <option value="{$v['id']}">{$v['name']}</option>
- {/foreach}
- </select>
- </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>
- $(function () {
- $(window).bind("resize",function(){
- var width=$(".jqGrid_wrapper").width();
- $("#table").setGridWidth(width);
- });
- $.jgrid.defaults.styleUI="Bootstrap";
- $("#table").jqGrid({
- url:"{:url('showfee',[],'')}",
- datatype: "json",
- colModel:[
- {label:'ID',name:'id',index:'id', width:30,sortable: false},
- {label:'小区',name:'xq_title',index:'xq_title',width:60,editable: false,sortable: false},
- {label:'名称',name:'title',index:'title',width:40,editable: false,sortable: false},
- {label:'面积(m²)',name:'area',index:'area',width:40,editable: false,sortable: false},
- {label:'资源属性',name:'cate_name',index:'cate_name',width:60,editable: false,sortable: false},
- {label:'类型',name:'c_type_name',index:'c_type_name',width:60,editable: false,sortable: false},
- {label:'业主',name:'name',index:'name',width:40,editable: false,sortable: false},
- {label:'手机号',name:'phone',index:'phone',width:60,editable: false,sortable: false},
- {label:'身份证',name:'card',index:'card',width:60,editable: false,sortable: false},
- {label:'收费起止时间',name:'startend',index:'startend',width:60,editable: false,sortable: false},
- {label:'累计应收',name:'money',index:'money',width:30,editable: false,sortable: false},
- {label:'状态',name:'enable',index:'enable',width:30,editable: false,sortable: false,formatter:function (a,b,c){
- if(a == 0){
- return '禁用';
- } else{
- return '启用';
- }
- }},
- {label:'操作',width:40,sortable: false,formatter: function (a, b, c) {
- // var editurl = "{:url('add',[],'')}/id/"+c.id;
- var feeUrl = "{:url('fee',[],'')}/id/"+c.id;
- // var btn = '<a url="'+editurl+'" href="javascript:;" data-title="编辑{$m_name}" onclick="layer_open(this,1)"><span class="label label-primary" title="编辑">编辑</span></a> ';
- var btn= '<a href="'+feeUrl+'" ><span class="label label-primary" 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: "asc",
- caption:"{$m_name}",
- loadComplete: function (xhr) {
- if(xhr.code==0){
- layer.msg(xhr.msg);
- return false;
- }
- },
- });
- });
- </script>
- {/block}
|