|
@@ -0,0 +1,108 @@
|
|
|
+{extend name="common/common2" /}
|
|
|
+{block name="main"}
|
|
|
+
|
|
|
+<div class="ibox">
|
|
|
+ <div class="ibox-content">
|
|
|
+ <div class="row">
|
|
|
+ <div class="col-xs-3">
|
|
|
+<!-- <a href="javascript:;" url="{:url('add')}" 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-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:'sn',index:'sn', width:40,sortable: false},
|
|
|
+ {label:'位置',name:'title',index:'title', width:60,sortable: false},
|
|
|
+ {label:'备注',name:'remark',index:'remark', width:60,sortable: false},
|
|
|
+
|
|
|
+ {label:'状态',name:'status',index:'status',width:50,editable: false,sortable: false,formatter:function (a,b,c){
|
|
|
+ if(a == 0){
|
|
|
+ return '<span class="label label-danger" title="离线">离线</span>';
|
|
|
+ } else{
|
|
|
+ return '<span class="label label-success" title="在线">在线</span>';
|
|
|
+ }
|
|
|
+ }},
|
|
|
+ {label:'环境状态',name:'status2',index:'status2',width:50,editable: false,sortable: false,formatter:function (a,b,c){
|
|
|
+ if(a == 0){
|
|
|
+ return '<span class="label label-danger" title="异常">异常</span>';
|
|
|
+ }else if(a == 1){
|
|
|
+ return '<span class="label label-warning" title="中等">中等</span>';
|
|
|
+ } else{
|
|
|
+ return '<span class="label label-success" title="正常">正常</span>';
|
|
|
+ }
|
|
|
+ }},
|
|
|
+ {label:'创建时间',name:'create_time',index:'create_time',width:60,editable: false,sortable: false},
|
|
|
+
|
|
|
+ // {label:'操作',width:60,sortable: false,formatter: function (a, b, c) {
|
|
|
+ // var editurl = "{:url('add',[],'')}/id/"+c.id;
|
|
|
+ // var delurl = "{:url('del',[],'')}/id/"+c.id;
|
|
|
+ // var btn = '<a url="'+editurl+'" 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}
|