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.
77 lines
2.3 KiB
77 lines
2.3 KiB
<!DOCTYPE html>
|
|
<%@ page language="java" pageEncoding="UTF-8"%>
|
|
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
|
|
<%@ include file="/common/ctx.jsp"%>
|
|
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt"%>
|
|
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%>
|
|
<%--<%@ taglib prefix="cjy" uri="../../WEB-INF/cjyregion.tld"%>--%>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="description"
|
|
content="A fully featured admin theme which can be used to build CRM, CMS, etc.">
|
|
<meta name="author" content="Coderthemes">
|
|
|
|
<link rel="shortcut icon" href="${ctx}/images/favicon_1.ico">
|
|
|
|
<title>综合视频监控</title>
|
|
|
|
<!-- 新样式引入 -->
|
|
<link href="${ctx}/hbcyjc/resource/css/cjy_style.css" rel="stylesheet" />
|
|
<link href="${ctx}/hbcyjc/resource/css/cjy_style2.css" rel="stylesheet" />
|
|
<script src="${ctx}/js/jquery.min.js"></script>
|
|
|
|
<link href="${ctx}/hbcyjc/resourceNew/css/cjy_zlmxg.css" rel="stylesheet" />
|
|
<%@ include file="/common/theme_css.jsp" %>
|
|
|
|
<script src="${ctx}/js/jquery-1.11.0.min.js"></script>
|
|
|
|
<script src="${ctx}/js/layer/layer.js"></script>
|
|
</head>
|
|
|
|
<body >
|
|
<div class="xingk_nr"></div>
|
|
<div class="full_box">
|
|
<form class="zt_lay">
|
|
<div class="form_hpzs" id="datatable-editable_filter">
|
|
<label class="form_label">审核:</label>
|
|
<div class="form_select">
|
|
<select id="videoExamineState" name="videoExamineState">
|
|
<option value = "">请选择</option>
|
|
<option value = "0">通过</option>
|
|
<option value = "1">不通过</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
<button type="button" class="bttn bttn_sc" onclick="examinesh()">
|
|
<i class="md md-remove" ></i>审核
|
|
</button>
|
|
</form>
|
|
</div>
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
//审核操作
|
|
function examinesh(){
|
|
var id= "${id}";
|
|
var videoExamineState = $("#videoExamineState").val();
|
|
if(videoExamineState == "" || videoExamineState == null){
|
|
alert("请选择是否同意");
|
|
return;
|
|
}
|
|
location.href="${ctx}/zhspjkvideomanage/updaexaminesh.do?id="+id+"&videoExamineState="+videoExamineState;
|
|
|
|
var index = parent.layer.getFrameIndex(window.name); //获取窗口索引
|
|
parent.layer.close(index) //关闭弹出框
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
</script>
|
|
</body>
|
|
</html>
|
|
|