一、 新增功能网络审核。
具体要求:
- 在左侧的二级菜单栏中新增网络审核功能。
- 点击网络审核,显示需求管理界面,即录入需求查询界面,但要按照需求名称、机构名称、所在地域、归口管理单位、机构属性、科技活动类型字段进行过滤。
- 选择需要审核的需求名称,进入需求浏览界面
- 在显示页面的最下方增加同意按钮,若同意则网络审核通过,用户不允许再次修改该项技术需求;若不同意,则应写明审核理由,供用户查看。
<%@page import="java.sql.ResultSet"%> <%@page import="java.sql.Statement"%> <%@page import="java.sql.Connection"%> <%@page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> <!DOCTYPE html PUBLIC"-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type"content="text/html; charset=UTF-8"> <title>查看需求信息</title> <script src="${pageContext.request.contextPath}/static/js/jquery-1.12.1.js"type="text/javascript"></script> <script src="${pageContext.request.contextPath}/static/bootstrap-3.3.5-dist/js/bootstrap.js"type="text/javascript"></script> <link rel="stylesheet"type="text/css" href="${pageContext.request.contextPath}/static/bootstrap-3.3.5-dist/css/bootstrap.css"/> <script type="text/javascript"> function func(){ var name = $("#name").val(); var status2 = $("#status2").val(); window.location.href = "${pageContext.request.contextPath}/admin/xuqiuServlet?method=searchlist&name=" + name + "&status=" + status2; } </script> </head> <body> <div class="container-fluid"> <div class="row-fluid"> <div class="span12" style="text-align:center"> <h1>网络审核</h1> </div> </div> <hr> <div class="row-fluid"> <div class="col-md-1 "></div> <div class="col-md-10 "> <table class="table table-striped"> <tr> <td>需求编号</td> <td>技术需求名称</td> <td>填报日期</td> <td>审核</td> </tr> <!-- forEach遍历出adminBeans --> <c:forEach items="${zhengjibeanlist }" var="item" varStatus="status"> <tr> <td>${item.id }</td> <td>${item.jiname }</td> <td>${item.createdate }</td> <td> <a href="${pageContext.request.contextPath}/admin/xuqiuServlet?method=shenhedetail&id=${item.id }"> <button type="button" class="btn btn-primary">审核</button></a> </td> </tr> </c:forEach> </table> </div> <div class=" col-md-1"></div> </div> </div> </body> </html>