71 lines
2.2 KiB
Plaintext
71 lines
2.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>查看系统运行日志</title>
|
||
</head>
|
||
<body>
|
||
<form action="${ctx}/logSysRuntime/show.do" method="post">
|
||
|
||
<div class="main-container" id="main-container">
|
||
<div class="panel panel-primary">
|
||
<div class="panel-heading">
|
||
</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="${logSysRuntime.logId}" />
|
||
<!-- 存放表单的区域 -->
|
||
<tr>
|
||
<td>日志级别<font
|
||
color="red">*</font>:
|
||
</td>
|
||
<td><input type="text" name="logLevel"
|
||
value="${logSysRuntime.logLevel}"
|
||
id="logLevel" class="input" /></td>
|
||
<td>记录时间<font
|
||
color="red">*</font>:
|
||
</td>
|
||
<td><input
|
||
value="${logSysRuntime.logCreateTimeString}"
|
||
onclick="WdatePicker({dateFmt:'<%=LogSysRuntime.FORMAT_LOG_CREATE_TIME%>'})"
|
||
id="logCreateTimeString"
|
||
name="logCreateTimeString" maxlength="0"
|
||
class="input"/></td>
|
||
</tr>
|
||
|
||
|
||
<tr>
|
||
<td>日志内容<font
|
||
color="red">*</font>:
|
||
</td>
|
||
<td colspan="3"><textarea name="logContent"
|
||
value="${logSysRuntime.logContent}"
|
||
id="logContent" style="width: 700px"></textarea></td>
|
||
</tr>
|
||
|
||
|
||
</table>
|
||
<div class="col-md-offset-1 col-md-9" style="text-align: center;">
|
||
<button type="button" onclick="window.location='${ctx}/logSysRuntime/list.do'">
|
||
<span class="icon_back">返回</span>
|
||
</button>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</form>
|
||
|
||
</body>
|
||
</html>
|