140 lines
4.2 KiB
Plaintext
140 lines
4.2 KiB
Plaintext
<%@ page contentType="text/html;charset=UTF-8"%>
|
||
<%@page import="com.blueland.bpm.log.model.*" %>
|
||
<%@ include file="/commons/taglibs.jsp"%>
|
||
<%
|
||
String path = request.getContextPath();
|
||
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
|
||
%>
|
||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||
<%@ include file="/commons/meta.jsp"%>
|
||
<base href="<%=basePath%>">
|
||
<title>分区说明:按应用系统ID(LOG_APP_ID)做主分区,按日期(LOG_OPERATE_TIME)(单位为天)做子分区新增</title>
|
||
</head>
|
||
<body>
|
||
<form action="${ctx}/tlogUserOperate/save.do" method="post">
|
||
<div class="main-container" id="main-container">
|
||
<div class="panel-heading">
|
||
新增分区说明:按应用系统ID(LOG_APP_ID)做主分区,按日期(LOG_OPERATE_TIME)(单位为天)做子分区
|
||
</div>
|
||
<div class="panel panel-primary">
|
||
<div class="col-md-offset-1 col-md-9" style="text-align: center;">
|
||
<a class="btn btn-sm btn-primary" id="submitButton"
|
||
onclick="javascript:getReferenceForm(this).submit();"><i
|
||
class="icon icon-sure"></i>保存</a> <a class="btn btn-sm btn-primary"
|
||
onclick="window.location='${ctx}/tlogUserOperate/list.do'"><i
|
||
class="icon icon-close"></i>返回</a>
|
||
</div>
|
||
<div class="panel-body">
|
||
<table class='table table-bordered' border="0" cellspacing="0" cellpadding="0" id="myTable">
|
||
<!-- 存放表单的区域 -->
|
||
<tr>
|
||
<th>
|
||
操作用户ID<font color="red">*</font>:
|
||
</th>
|
||
<td>
|
||
<input type="text" name="logUserId"
|
||
value="" id="logUserId"
|
||
class="input" />
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<th>
|
||
操作用户姓名<font color="red">*</font>:
|
||
</th>
|
||
<td>
|
||
<input type="text" name="logUserName"
|
||
value="" id="logUserName"
|
||
class="input" />
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<th>
|
||
操作客户端IP,取值说明:(操作人的浏览器IP地址):
|
||
</th>
|
||
<td>
|
||
<input type="text" name="logUserIp"
|
||
value="" id="logUserIp"
|
||
class="input" />
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<th>
|
||
操作发生时间
|
||
<font color="red">*</font>
|
||
:
|
||
</th>
|
||
<td><input value=""
|
||
onclick="WdatePicker({dateFmt:'<%=TlogUserOperate.FORMAT_LOG_OPERATE_TIME%>'})"
|
||
id="logOperateTimeString"
|
||
name="logOperateTimeString" maxlength="0"
|
||
class="input" />
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<th>
|
||
操作主体所属应用系统ID<font color="red">*</font>:
|
||
</th>
|
||
<td>
|
||
<input type="text" name="logAppId"
|
||
value="" id="logAppId"
|
||
class="input" />
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<th>
|
||
操作主体所属应用系统模块名称,取值说明:注册用户所属用户管理模块:
|
||
</th>
|
||
<td>
|
||
<input type="text" name="logAppModuleName"
|
||
value="" id="logAppModuleName"
|
||
class="input" />
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<th>
|
||
操作动作名称,取值说明:新增组织机构的新增操作<font color="red">*</font>:
|
||
</th>
|
||
<td>
|
||
<input type="text" name="logOperateName"
|
||
value="" id="logOperateName"
|
||
class="input" />
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<th>
|
||
被操作主体,取值说明:新增组织机构的机构主体<font color="red">*</font>:
|
||
</th>
|
||
<td>
|
||
<input type="text" name="logOperateSubject"
|
||
value="" id="logOperateSubject"
|
||
class="input" />
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<th>
|
||
操作主体业务关键字,取值说明:新增组织机构的机构ID,批量操作可为空<font color="red">*</font>:
|
||
</th>
|
||
<td>
|
||
<input type="text" name="logOperateSubjectKey"
|
||
value="" id="logOperateSubjectKey"
|
||
class="input" />
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<th>
|
||
备注:
|
||
</th>
|
||
<td>
|
||
<input type="text" name="logRemark"
|
||
value="" id="logRemark"
|
||
class="input" />
|
||
</td>
|
||
</tr>
|
||
</table>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</form>
|
||
</body>
|
||
</html> |