12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- <%--
- time:2011-11-26 11:35:04
- --%>
- <%@page language="java" pageEncoding="UTF-8"%>
- <%@include file="/commons/include/html_doctype.html"%>
- <html>
- <head>
- <title>添加 系统日志</title>
- <%@include file="/commons/include/form.jsp" %>
- <script type="text/javascript" src="${ctx}/servlet/ValidJs?form=sysAudit"></script>
- <script type="text/javascript">
- $(function() {
- function showRequest(formData, jqForm, options) {
- return true;
- }
- valid(showRequest,showResponse);
- $("a.save").click(function() {
- $('#sysAuditForm').submit();
- });
- });
- </script>
- </head>
- <body>
- <div class="panel">
- <div class="panel-top">
- <div class="tbar-title">
- <span class="tbar-label">添加系统日志</span>
- </div>
- <div class="panel-toolbar">
- <div class="toolBar">
- <div class="group"><a class="link save" id="dataFormSave" href="javascript:;"><span></span>保存</a></div>
- <div class="l-bar-separator"></div>
- <div class="group"><a class="link back href="list.ht"><span></span>返回</a></div>
- </div>
- </div>
- </div>
- <div class="panel-body">
- <form id="sysAuditForm" method="post" action="add2.ht">
- <div class="panel-detail">
- <table class="table-detail" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <th width="20%">操作名称: :</th>
-
- <td><input type="text" id="opName" name="opName" value="" class="inputText" /></td>
- </tr>
- <tr>
- <th width="20%">执行时间: :</th>
-
- <td><input type="text" id="exeTime" name="exeTime" value="" class="inputText date" /></td>
- </tr>
- <tr>
- <th width="20%">执行人ID: :</th>
-
- <td><input type="text" id="executorId" name="executorId" value="" class="inputText" /></td>
- </tr>
- <tr>
- <th width="20%">执行人: :</th>
-
- <td><input type="text" id="executor" name="executor" value="" class="inputText" /></td>
- </tr>
- <tr>
- <th width="20%">IP: :</th>
-
- <td><input type="text" id="fromIp" name="fromIp" value="" class="inputText" /></td>
- </tr>
- <tr>
- <th width="20%">执行方法: :</th>
-
- <td><input type="text" id="exeMethod" name="exeMethod" value="" class="inputText" /></td>
- </tr>
- <tr>
- <th width="20%">请求URL: :</th>
-
- <td><input type="text" id="requestURI" name="requestURI" value="" class="inputText" /></td>
- </tr>
- <tr>
- <th width="20%">请求参数: :</th>
-
- <td><input type="text" id="reqParams" name="reqParams" value="" class="inputText" /></td>
- </tr>
- </table>
- </div>
- </form>
- </div>
- </div>
- </body>
- </html>
|