logDetail.jsp 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <%@ page language="java" import="java.util.*" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
  2. <%@include file="/context/mytags.jsp"%>
  3. <!DOCTYPE html>
  4. <html>
  5. <head>
  6. <title>日志详情</title>
  7. <t:base type="jquery,tools"></t:base>
  8. </head>
  9. <body style="overflow-y: hidden" scroll="no">
  10. <t:formvalid formid="formobj" layout="div" dialog="true">
  11. <fieldset class="step">
  12. <div class="form"><label class="form"> <%-- <t:mutiLang langKey="common.username"/> --%>操作人:${tsLog.userName} </label>
  13. </div>
  14. <div class="form"><label class="form"> <%-- <t:mutiLang langKey="common.logtype"/> --%>日志类型: </label>
  15. <!-- 以后再统一由数据字典维护 fangwenrong-->
  16. <c:if test="${tsLog.operatetype==1}"><t:mutiLang langKey="common.login"/></c:if>
  17. <c:if test="${tsLog.operatetype==2}"><t:mutiLang langKey="common.logout"/></c:if>
  18. <c:if test="${tsLog.operatetype==3}"><t:mutiLang langKey="common.insert"/></c:if>
  19. <c:if test="${tsLog.operatetype==4}"><t:mutiLang langKey="common.delete"/></c:if>
  20. <c:if test="${tsLog.operatetype==5}"><t:mutiLang langKey="common.update"/></c:if>
  21. <c:if test="${tsLog.operatetype==6}"><t:mutiLang langKey="common.upload"/></c:if>
  22. <c:if test="${tsLog.operatetype==7}"><t:mutiLang langKey="common.other"/></c:if>
  23. </div>
  24. <%--update-begin--Author:dangzhenghui Date:20170624 for:TASK #2178 【日志表单效果】日志查看表单-----------------%>
  25. <div class="form"><label class="form"> <t:mutiLang langKey="log.content"/>: </label><textarea style="width: 100% ;background-color:#f4f4f4" rows="6" >${tsLog.logcontent }</textarea> </div>
  26. <%--update-end--Author:dangzhenghui Date:20170624 for:TASK #2178 【日志表单效果】日志查看表单-----------------%>
  27. <div class="form"><label class="form"> <%-- <t:mutiLang langKey="common.loglevel"/> --%>日志等级: </label>
  28. <!-- 以后再统一由数据字典维护 fangwenrong-->
  29. <c:if test="${tsLog.loglevel==1}">INFO</c:if>
  30. <c:if test="${tsLog.loglevel==2}">WARRING</c:if>
  31. <c:if test="${tsLog.loglevel==3}">ERROR</c:if>
  32. </div>
  33. <div class="form"><label class="form"> <t:mutiLang langKey="operate.ip"/>: </label> ${tsLog.note}</div>
  34. <div class="form"><label class="form"> <t:mutiLang langKey="operate.time"/>: </label>
  35. <fmt:formatDate value="${tsLog.operatetime}" pattern="yyyy-MM-dd HH:mm:ss"/>
  36. </div>
  37. <div class="form"><label class="form"> <t:mutiLang langKey="common.browser"/>: </label> ${tsLog.broswer}</div>
  38. </fieldset>
  39. </form>
  40. </t:formvalid>
  41. </body>
  42. </html>