117 lines
3.6 KiB
Plaintext
117 lines
3.6 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>EsbMsgLog编辑</title>
|
||
</head>
|
||
<body>
|
||
<form action="${ctx}/esbMsgLog/update.do" method="post">
|
||
<div class="main-container" id="main-container">
|
||
<div class="panel-heading">
|
||
编辑EsbMsgLog
|
||
</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}/esbMsgLog/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">
|
||
<!-- 存放隐藏域的区域 -->
|
||
<input type="hidden" id="logId"
|
||
name="logId"
|
||
value="${esbMsgLog.logId}" />
|
||
<!-- 存放表单的区域 -->
|
||
<tr>
|
||
<th>操作类型:
|
||
</th>
|
||
<td><input type="text" name="operation"
|
||
value="${esbMsgLog.operation}"
|
||
id="operation" class="input" /></td>
|
||
</tr>
|
||
<tr>
|
||
<th>消息内容:
|
||
</th>
|
||
<td><input type="text" name="xmlContent"
|
||
value="${esbMsgLog.xmlContent}"
|
||
id="xmlContent" class="input" /></td>
|
||
</tr>
|
||
<tr>
|
||
<th>标题:
|
||
</th>
|
||
<td><input type="text" name="title"
|
||
value="${esbMsgLog.title}"
|
||
id="title" class="input" /></td>
|
||
</tr>
|
||
<tr>
|
||
<th>创建时间:
|
||
</th>
|
||
<td><input
|
||
value="${esbMsgLog.createTimeString}"
|
||
onclick="WdatePicker({dateFmt:'<%=EsbMsgLog.FORMAT_CREATE_TIME%>'})"
|
||
id="createTimeString"
|
||
name="createTimeString" maxlength="0"
|
||
class="input"/></td>
|
||
</tr>
|
||
<tr>
|
||
<th>状态:
|
||
</th>
|
||
<td><input type="text" name="status"
|
||
value="${esbMsgLog.status}"
|
||
id="status" class="input" /></td>
|
||
</tr>
|
||
<tr>
|
||
<th>用户ID:
|
||
</th>
|
||
<td><input type="text" name="userIds"
|
||
value="${esbMsgLog.userIds}"
|
||
id="userIds" class="input" /></td>
|
||
</tr>
|
||
<tr>
|
||
<th>用户名称:
|
||
</th>
|
||
<td><input type="text" name="userNames"
|
||
value="${esbMsgLog.userNames}"
|
||
id="userNames" class="input" /></td>
|
||
</tr>
|
||
<tr>
|
||
<th>业务对象ID:
|
||
</th>
|
||
<td><input type="text" name="bizId"
|
||
value="${esbMsgLog.bizId}"
|
||
id="bizId" class="input" /></td>
|
||
</tr>
|
||
<tr>
|
||
<th>ESB对应业务ID:
|
||
</th>
|
||
<td><input type="text" name="esbBizid"
|
||
value="${esbMsgLog.esbBizid}"
|
||
id="esbBizid" class="input" /></td>
|
||
</tr>
|
||
<tr>
|
||
<th>应用系统:
|
||
</th>
|
||
<td><input type="text" name="appId"
|
||
value="${esbMsgLog.appId}"
|
||
id="appId" class="input" /></td>
|
||
</tr>
|
||
|
||
</table>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</form>
|
||
|
||
</body>
|
||
</html>
|