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.
302 lines
12 KiB
302 lines
12 KiB
<%@ page language="java" contentType="text/html; charset=UTF-8"
|
|
pageEncoding="UTF-8"%>
|
|
<%@page import="com.zky.zhyw.smsb.CreatePropertyIdUtils"%>
|
|
<%@page import="com.zky.para.Para"%>
|
|
<%@include file="/auth.jsp"%>
|
|
<jsp:useBean id="getPara" scope="application"
|
|
class="com.zky.para.SyncPara" />
|
|
<%
|
|
String fileState = "";
|
|
String secret = "";
|
|
String writeDate = "";
|
|
String year[] = null;
|
|
String schoolid = (String) request.getAttribute("schoolid");
|
|
String areaid1 = Common.convertNull(request.getParameter("areaid"));
|
|
String frameworkid1 = Common.convertNull(request
|
|
.getParameter("frameworkid"));
|
|
String schoolid1 = Common.convertNull(request
|
|
.getParameter("schoolid"));
|
|
String employeeId = (String) request.getAttribute("writeempid");
|
|
String employeeId1 = Common.convertNull(request
|
|
.getParameter("writeempid"));
|
|
HashFmlBuf bufs = (HashFmlBuf) request.getAttribute("bufEmployee");
|
|
String areaid = (String) request.getAttribute("areaid");
|
|
HashFmlBuf bufschool = (HashFmlBuf) request
|
|
.getAttribute("writeDepartment");
|
|
String sj = Common.convertNull(request.getParameter("sj"));
|
|
String qj = Common.convertNull(request.getParameter("qj"));
|
|
String school = Common.convertNull(request.getParameter("school"));
|
|
String useId=CreatePropertyIdUtils.createPropertyUseId(request,response,school);
|
|
login_obj = (Login)session.getAttribute("login");
|
|
String optrid = login_obj.optrid;
|
|
String optrname = getPara.getDesc("TAB_EMPLOYEE","EMPID","EMPNAME",optrid);
|
|
Login login = (Login) request.getSession().getAttribute("login");
|
|
%>
|
|
<html>
|
|
<head>
|
|
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
|
|
<title>涉密网络终端管理</title>
|
|
<link rel="stylesheet" type="text/css" href="../../../css/font.css">
|
|
<script src="/js/check.js"></script>
|
|
<script src="../../../js/date.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="../../../js/2k3Grid.css">
|
|
<link rel="stylesheet" type="text/css" href="../../../js/2k3Menu.css">
|
|
<link rel="stylesheet" type="text/css" href="../../../js/2k3Dialog.css">
|
|
<style>
|
|
#myGrid .gridHead{
|
|
height: 50px;
|
|
line-height: 50px;
|
|
background-color: #cce7f5;
|
|
color: #000;
|
|
font-size: 16px;
|
|
box-sizing: border-box;
|
|
}
|
|
#myGrid .gridHead .gridRow{
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
#myGrid .gridHead span{
|
|
text-align: center;
|
|
display: inline-block;
|
|
width: 148px;
|
|
border-right: 1px solid #000000;
|
|
box-sizing: border-box;
|
|
}
|
|
#myGrid .gridBody .gridRow{
|
|
height: 30px;
|
|
/*margin-top: 5px;*/
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
border-bottom: 1px solid #000;
|
|
color: #000;
|
|
}
|
|
#myGrid .gridBody .gridRow span{
|
|
width: 148px;
|
|
display: inline-block;
|
|
border-right: 1px solid;
|
|
text-align: center;
|
|
height: 30px;
|
|
line-height: 30px;
|
|
box-sizing: border-box;
|
|
}
|
|
#myGrid .gridBody .gridRow span a,img,input {
|
|
margin-right: 6px;
|
|
}
|
|
</style>
|
|
<script>
|
|
function setValue() {
|
|
<%if (!Common.isNull(sj)) {
|
|
out.println("form1.sj.value='" + sj + "';");
|
|
}
|
|
if (!Common.isNull(qj)) {
|
|
out.println("form1.qj.value='" + qj + "';");
|
|
}%>
|
|
}
|
|
function check(operate, useid) {
|
|
form1.operate.value = operate;
|
|
if (operate == "addPropertyNet") {
|
|
form1.action = "/zhyw/smsb/smwl/propertyNetAdd.jsp";
|
|
}
|
|
if (operate == "deleteNetManageRow") {
|
|
form1.action = "/servlet/PropertyNetManageServlet?operate=deleteNetManageRow&InfoId=" + useid;
|
|
}
|
|
if (operate == "showProperty") {
|
|
form1.action = "/servlet/PropertyNetManageServlet?operate=showProperty&useId=" + useid;
|
|
}
|
|
if (operate == "queryPropertyNetPage") {
|
|
}
|
|
if (operate == "deletePropertyNetUse") {
|
|
var Infos = form1.Infos;
|
|
var count = 0;
|
|
if (Infos) {
|
|
if (Infos.length) {
|
|
for ( var i = 0; i < Infos.length; i++) {
|
|
if (Infos[i].checked == true) {
|
|
count++;
|
|
}
|
|
}
|
|
} else {
|
|
if (Infos.checked == true) {
|
|
count++;
|
|
}
|
|
}
|
|
} else {
|
|
alert("没有查到人员信息!");
|
|
return false;
|
|
}
|
|
if (count == 0) {
|
|
alert("请选择要删除的人员信息!");
|
|
return false;
|
|
}
|
|
if (!confirm("确定要删除已经选择的人员信息吗?")) {
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
form1.button1.disabled = true;
|
|
form1.button2.disabled = true;
|
|
form1.submit();
|
|
}
|
|
function selectChange(i) {
|
|
form1.action = "/zhyw/smsb/smwl/propertyNetManage.jsp";
|
|
form1.submit();
|
|
}
|
|
</script>
|
|
<style type="text/css">
|
|
html { overflow-x:hidden; overflow-y:hidden; }
|
|
</style>
|
|
</head>
|
|
<body onload="setValue();" scroll="no">
|
|
<form name="form1" method="post" action="/servlet/PropertyNetManageServlet" style="height: 100%;">
|
|
<table width="99%" border="0" align="center" cellpadding="0" cellspacing="1" class="box">
|
|
<tr>
|
|
<td valign="top"><table width="100%" height="23" border="0"
|
|
cellpadding="0" cellspacing="0">
|
|
<tr>
|
|
<td width="25%" background="../../../images/tab_search_01.jpg"><table
|
|
width="100%" height="23" border="0" align="center"
|
|
cellpadding="0" cellspacing="0">
|
|
<tr>
|
|
<td width="6%" align="right"><img src="../../../images/little_red.jpg"
|
|
width="12" height="12"></td>
|
|
<td width="94%" class="font12b"> <b>涉密终端登记</b></td>
|
|
</tr>
|
|
</table></td>
|
|
<td width="82%" background="/images/tab_search_03.jpg"><img
|
|
src="/images/tab_search_02.jpg" width="12" height="23"></td>
|
|
</tr>
|
|
</table>
|
|
<input type="hidden" name="operate" value="" />
|
|
<table width="100%" border="0" align="left" cellpadding="2"
|
|
cellspacing="1" bgcolor="#FFFFFF" class="table02">
|
|
<tr bgcolor="#FFFFFF">
|
|
<td class="cell1">所属市州</td>
|
|
<td class="cell2"><select class='aselect' name="sj"
|
|
setValue="<%=sj%>" style="width:155px" onChange="selectChange(1);">
|
|
<%=Para.getSj(getPara)%>
|
|
</select></td>
|
|
<td class="cell1">所属区县</td>
|
|
<td class="cell2"><select class='aselect' name="qj"
|
|
setValue="<%=qj%>" onChange="selectChange(1);" style="width:155px" <%if(sj.equals("0930")){ %> disabled="disabled" <%} %>>
|
|
<%=Para.getQj(getPara, sj)%>
|
|
</select></td>
|
|
<td class="cell1">单位名称</td>
|
|
<td class="cell2"><select class='aselect' name="school"
|
|
setValue="<%=school%>" style="width:155px">
|
|
<%if(sj.equals("0930")){ %>
|
|
<%=Para.getXx1(getPara, sj)%>
|
|
<%}else { %>
|
|
<%=Para.getXx(getPara,qj)%>
|
|
<%} %>
|
|
</select></td>
|
|
<td class="cell1">部门名称</td>
|
|
<td class="cell2"><input type="text" name="usename"></td>
|
|
<td class="cell1">
|
|
<input type="image" name="button1" src="/images1/cx.png" onClick="check('queryPropertyNetPage');"/>
|
|
</td>
|
|
<td class="cell2"></td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<table width="99%" align="center" style="margin-bottom: -2px;">
|
|
<tr align="left">
|
|
<td>
|
|
<input name="button2" onclick="check('addPropertyNet');" type="image" src="/images1/tj.png"/>
|
|
<%if(login.getSanyuan().equals("0")){ %>
|
|
<input name="button2" onclick="return check('deletePropertyNetUse');" type="image" src="/images1/cc.png"/>
|
|
<%}else if(login.getSanyuan().equals("1")){ %>
|
|
<%}else { %>
|
|
<input name="button2" onclick="return check('deletePropertyNetUse');" type="image" src="/images1/cc.png"/>
|
|
<%} %>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<%
|
|
HashFmlBuf buf = (HashFmlBuf) request.getAttribute("useBuf");
|
|
if (buf != null) {
|
|
int rowcount = buf.getRowCount();
|
|
%>
|
|
<table width="99%" border="0" cellpadding="0" style="height: 87%;margin-top: 4px;" cellspacing="1" class="box">
|
|
<tr>
|
|
<td>
|
|
<div style="width: 100%; height: 96%; overflow: auto;">
|
|
<div id="myGrid" class="2k3Grid" borderWidth="0"
|
|
contextMenu="mnuGridContextMenu" altRowColor="oldLace">
|
|
<div class="gridHead">
|
|
<!--div align="left"><span width="5%">共检索到<%=rowcount%>条记录</span></div-->
|
|
<div class="gridRow">
|
|
<span style="width: 80px;">序号</span>
|
|
<span style="width: 80px;">选择项</span>
|
|
<span>所属市州</span>
|
|
<span style="width: 100px;">所属区县</span>
|
|
<span style="width: 200px;">单位名称</span>
|
|
<span style="width: 200px;">部门名称</span>
|
|
<span>登记人</span>
|
|
<span>登记日期</span>
|
|
<span style="width: 100px;">密级</span>
|
|
<span style="width: 100px;">终端数量</span>
|
|
<span style="width: 132px;border-right: none;">管理</span>
|
|
</div>
|
|
</div>
|
|
<div class="gridBody">
|
|
<%
|
|
for (int i = 0; i < rowcount; i++) {
|
|
String tempDeptid = buf.fget("NET_ID", i);
|
|
%>
|
|
<div class="gridRow">
|
|
<span style="width: 80px;"><%=i + 1%></span>
|
|
<span style="width: 80px;"><input type="checkbox" name="Infos" value="<%=tempDeptid%>"></span>
|
|
<span ><%=buf.fget("FRAMEWORKNAME", i)%></span>
|
|
<span style="width: 100px;" ><%=buf.fget("AREADEF", i)%></span>
|
|
<span style="width: 200px;"><%=buf.fget("DEPARTNAME", i)%></span>
|
|
<span style="width: 200px;"><%=buf.fget("departname", i)%></span>
|
|
<span ><%=buf.fget("NET_STAFFID", i)%></span>
|
|
<span><%=buf.fget("NET_DATE", i)%></span>
|
|
<span style="width: 100px;"><%=buf.fget("NET_SECURITY", i)%></span>
|
|
<span style="width: 100px;"><%=buf.fget("TERMINAL",i) %></span>
|
|
<span style="width: 132px;">
|
|
<input name="button2" style="cursor: pointer;margin-top: 5px;" onclick=" check('showProperty','<%=tempDeptid%>');" type="image" src="/images1/read_document.png" border="0" alt="预览"/>
|
|
<!--
|
|
<%if(login.getSanyuan().equals("0")){ %>
|
|
<a href="/servlet/PropertyNetManageServlet?operate=queryPropertyNetId&useId=<%=tempDeptid%>"><img src="/images1/edit.gif" border="0" alt="修改"/></a>
|
|
<%}else if(login.getSanyuan().equals("1")){ %>
|
|
<%}else { %>
|
|
<a href="/servlet/PropertyNetManageServlet?operate=queryPropertyNetId&useId=<%=tempDeptid%>"><img src="/images1/edit.gif" border="0" alt="修改"/></a>
|
|
<%} %>
|
|
-->
|
|
<%if(login.getSanyuan().equals("0")){ %>
|
|
<a onclick="return confirm('您确定要删除此信息吗?');" href="/servlet/PropertyNetManageServlet?operate=deleteNetManageRow&InfoId=<%=tempDeptid%>"><img src="/images1/delete.gif" style="margin-top: 5px;" border="0" alt="删除"/></a>
|
|
<%}else if(login.getSanyuan().equals("1")){ %>
|
|
<%}else { %>
|
|
<a onclick="return confirm('您确定要删除此信息吗?');" href="/servlet/PropertyNetManageServlet?operate=deleteNetManageRow&InfoId=<%=tempDeptid%>"><img src="/images1/delete.gif" style="margin-top: 5px;" border="0" alt="删除"/></a>
|
|
<%} %>
|
|
<%if(login.getSanyuan().equals("0")){ %>
|
|
<a href="/servlet/PropertyNetManageServlet?operate=queryPropertynetInfo&operateuseId=<%=tempDeptid%>&dwNames=<%=buf.fget("NET_DEPARTID", i)%>" ><img src="/images1/add.gif" style="margin-top: 5px;"border="0" alt="给单位添加网络终端"/></a>
|
|
<%}else if(login.getSanyuan().equals("1")){ %>
|
|
<%}else { %>
|
|
<a href="/servlet/PropertyNetManageServlet?operate=queryPropertynetInfo&operateuseId=<%=tempDeptid%>&dwNames=<%=buf.fget("NET_DEPARTID", i)%>" ><img src="/images1/add.gif" style="margin-top: 5px;"border="0" alt="给单位添加网络终端"/></a>
|
|
<%} %>
|
|
</span>
|
|
</div>
|
|
<%
|
|
}
|
|
%>
|
|
</div>
|
|
<!-- gridBody end -->
|
|
</div>
|
|
<!-- myGrid end -->
|
|
</div>
|
|
<tag:PageLinkTag operate="queryPropertyNetPage" scope="request" width="99%" align="center" />
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
<%
|
|
}
|
|
%>
|
|
<%@include file="/foot.jsp"%>
|
|
</body>
|
|
</html> |