| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 | 
							- {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="sn" placeholder="订单号">
 
-                     </div>
 
-                     <div class="input-group">
 
-                         <select name="type" class="form-control">
 
-                             <option value="">选择支付类型</option>
 
-                             <option value="1">线下</option>
 
-                             <option value="2">线上</option>
 
-                         </select>
 
-                     </div>
 
-                     <div class="input-group">
 
-                         <select name="order_mode" class="form-control">
 
-                             <option value="">选择状态</option>
 
-                             <option value="0">待支付</option>
 
-                             <option value="1">已支付</option>
 
-                         </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('index')}",
 
-             datatype: "json",
 
-             colModel:[
 
-                 {label:'订单号',name:'id',index:'id', width:50,sortable: false},
 
-                 {label:'金额',name:'money',index:'money',width:50,sortable: false},
 
-                 {label:'类型',name:'type',index:'type',width:50,sortable: false,formatter:function (a,b,c){
 
-                     if(a == 1){
 
-                          return '线下';
 
-                     } else if(a == 2){
 
-                         return '线上';
 
-                     } else{
 
-                         return '';
 
-                     }
 
-                 }},
 
-                 {label:'状态',name:'status',index:'status',width:50,sortable: false,formatter:function (a,b,c){
 
-                     if(a == 1){
 
-                         return '已支付';
 
-                     } else{
 
-                         return '待支付';
 
-                     }
 
-                 }},
 
-                 {label:'操作',width:50,sortable: false,formatter: function (a, b, c) {
 
-                     var btn = '';
 
-                     var detail_url = "{:url('Orders/detail2',[],'')}/id/"+c.order_id;
 
-                     btn += '<a href="'+detail_url+'"><span class="label label-info" title="详情">详情</span></a> ';
 
-                     if(c.status == 0){
 
-                         var pay_url = "{:url('pay',[],'')}/id/"+c.id;
 
-                         btn += '<a  url="'+pay_url+'" href="javascript:;" data-title="支付" onclick="layer_open(this,1)"><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: "desc",
 
-             caption:"付费运送记录",
 
-             loadComplete: function (xhr) {
 
-                 if(xhr.code==0){
 
-                     layer.msg(xhr.msg);
 
-                     return false;
 
-                 }
 
-             },
 
-         });
 
-     });
 
- </script>
 
- {/block}
 
 
  |