|
@@ -0,0 +1,101 @@
|
|
|
+{extend name="common/common2" /}
|
|
|
+{block name="main"}
|
|
|
+
|
|
|
+<div class="ibox">
|
|
|
+ <div class="ibox-content">
|
|
|
+
|
|
|
+ <div class="row">
|
|
|
+ <div class="col-xs-3">
|
|
|
+ <a url="{:url('add')}" href="javascript:;" data-title="新增" onclick="layer_open(this,1)" class="btn btn-sm btn-primary">新增</a>
|
|
|
+ </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" class="form-control" name="title" 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">
|
|
|
+ <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>
|
|
|
+ </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:'title',index:'title',width:100,editable: false,sortable: false},
|
|
|
+ {label:'图片',name:'img',index:'img',width:40,editable: false,sortable: false,formatter: function (a, b, c) {
|
|
|
+ return '<img src="'+a+'" width="40" onclick="open_img(this)" />';
|
|
|
+ }},
|
|
|
+ {label:'备注',name:'remark',index:'remark',width:130,editable: false,sortable: false},
|
|
|
+ {label:'状态',name:'status',index:'status',width:80,editable: false,sortable: false,formatter: function (a, b, c) {
|
|
|
+ if(a == 0){
|
|
|
+ return '禁用';
|
|
|
+ }else{
|
|
|
+ return '正常';
|
|
|
+ }
|
|
|
+ }},
|
|
|
+ {label:'操作',width:100,sortable: false,formatter: function (a, b, c) {
|
|
|
+ var editurl = "{:url('add',[],'')}/id/"+c.id;
|
|
|
+ var delurl = "{:url('del',[],'')}/id/"+c.id;
|
|
|
+ var monurl = "{:url('h5/Index/monitor',[],'')}/id/"+c.idx;
|
|
|
+ var btn = '<a url="'+editurl+'" href="javascript:;" data-title="编辑" onclick="layer_open(this,1)"><span class="label label-primary" title="编辑">编辑</span></a> ';
|
|
|
+ btn += '<a url="'+monurl+'" href="javascript:;" data-title="监控" onclick="layer_open(this,1)"><span class="label label-primary" title="监控">监控</span></a> ';
|
|
|
+ btn += '<a href="'+delurl+'" class="confirm ajax-get" data-confirm="确定要删除此记录吗?" data-table="1"><span class="label label-danger" 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}
|