物联网平台 +Web 组态
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

193 lines
5.3 KiB

2 years ago
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ page import="com.lp.cfg.ProConfig"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%>
<!DOCTYPE html>
<html>
<head>
<%@ include file="/WEB-INF/oss/iot/common/variable.jsp"%>
<%@ include file="/WEB-INF/oss/iot/common/variable_js.jsp"%>
<%@ include file="/WEB-INF/oss/iot/common/resource_lib.jsp"%>
<style type="text/css">
.index_theLeft ul {
width: 100%;
padding: 0px;
margin: 0px;
overflow: auto;
}
.mapContainer{
height: 550px;width:100%;padding-left:170px;
}
.app-container{
background: #f2f2f2;width: 100%;border-top:1px solid #ecf0f5;
}
.box-white {
width: 97%;
min-width: 897px;
padding-bottom: 0;
margin: 0 auto;
}
.box {
padding: 10px;
padding-top:1px;
border-left: 1px solid #d2d6de;
border-right: 1px solid #d2d6de;
border-bottom: 1px solid #d2d6de;
}
.box {
border: 0!important;
box-shadow: 0 0 2px 1px rgba(13,5,9,.08)!important;
}
.box {
position: relative;
border-radius: 3px;
background: #fff;
border-top: 3px solid #d2d6de;
margin-bottom: 20px;
width: 100%;
box-shadow: 0 1px 1px rgba(0,0,0,.1);
}
.sceneList-info{
padding-top: 10px;
padding-left: 10px;
}
</style>
</head>
<body>
<div>
<div>
<!-- 左边栏 -->
<div class="float-left index_theLeft" style="width:170px;">
<div class="prolist">
<span>项目列表</span>
</div>
<ul class="dashboard-menu">
<c:forEach items="${info.data.getData()}" varStatus="status" var="obj">
<li onclick="changeScene(this)"
<c:if test="${id !=null }">
<c:if test="${obj.id ==id}">
class="active"
</c:if>
</c:if>
<c:if test="${id ==null }">
<c:if test="${status.index ==0}">
class="active"
</c:if>
</c:if>
sid="${obj.id}">
<span class="icon-stack-overflow"></span>&nbsp;${obj.name }
</li>
</c:forEach>
</ul>
</div>
<div class="mapContainer" >
<div class="app-container">
<div class="container-layout sceneList-info">
<div class="box join-device-box">
<div class="search-container jui-search_table" data-options="submit:'#searchbtns',table:'#init-table'">
<span class="titleName">门禁设备管理</span>
<input type-name="name" placeholder="名称查询" class="input input-self" />
<input type-name="scene_id" class="scene_id" type="hidden" />
<button onclick="add()" class="button ml-20 bg-iot float-right"><span class="icon-plus"></span> 新增</button>
<button id="searchbtns" class="button ml-20 bg-iot float-right"><span class="icon-search"></span> 查询</button>
</div>
<div style="margin-top:10px;">
<div id="init-table" type-option="table" config-option="'url':'/page/access/info',
param:{ scene_id:'$.scene_id$' },
columns:[
{'name':'序号','type':'seq','value':'seq','width':'6%'},
{'name':'门禁名称','value':'name','width':'15%'},
{'name':'SN','value':'sn','width':'10%'},
{'name':'门禁状态','type':'category','value':'iot_node_status','width':'10%'},
{'name':'门数','value':'door_type','width':'10%'},
{'name':'添加时间','type':'time','value':'atime','width':'15%'},
{'name':'操作','type':'self','value_callback':'value_function','width':'10%'}]" >
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
<script type="text/javascript">
// 项目列表变更
function changeScene(obj){
$(".dashboard-menu li").removeClass("active");
$(obj).addClass("active");
$(".scene_id").val($(".dashboard-menu li.active").attr("sid"));
reflash( $(".scene_id").val() );
}
// 刷新
function reflash(id){
$("#init-table").data("params",{ scene_id: $(".scene_id").val() });
$("#init-table").tableAdaptor();
}
// 操作栏回调
function value_function(data,seq){
return "<span tag='编辑' onclick='t_edit(this,"+data.id+")' class='self-icon icon-edit'></span>"+
"<span tag='删除' onclick='t_delete(this,"+data.id+")' class='self-icon icon-bitbucket'></span>";
}
// 编辑
function t_edit(obj,id){
layer.open({
type: 2,
title: '新增设备',
shadeClose: true,
shade: 0.7,
maxmin: true,
area: ['700px', '420px'],
content: basePath+"/service/iot/access_detail?id="+id
});
}
// 删除
function t_delete(obj,id){
lcomfirm('是否确定删除该门禁设备?',function(){
commonAjax("DELETE",localUrl+"/access/info?id="+id, "",function(){
tip("删除成功");
setTimeout(function(){
closeAll();
$("#init-table").tableAdaptor();
},1000)
});
});
}
// 新增
function add(){
if(! validater.empty($(".scene_id").val()) ){
layer.open({
type: 2,
title: '新增设备',
shadeClose: true,
shade: 0.7,
maxmin: true, //开启最大化最小化按钮
area: ['700px', '420px'],
content: basePath + "/service/iot/access_detail"
});
}else{
tip("请先添加项目信息");
}
}
$(function(){
$(".scene_id").val( $(".dashboard-menu li.active").attr("sid") );
})
</script>
</html>