sysSensitileWordsGetMyTodoTask.jsp 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
  2. <%@include file="/commons/include/html_doctype.html" %>
  3. <html>
  4. <head>
  5. <title>SYS_SENSITIVE_WORDS管理</title>
  6. <%@include file="/commons/include/get.jsp" %>
  7. </head>
  8. <body>
  9. <div class="panel">
  10. <div class="panel-top">
  11. <div class="tbar-title">
  12. <span class="tbar-label">SYS_SENSITIVE_WORDS管理列表</span>
  13. </div>
  14. <div class="panel-toolbar">
  15. <div class="toolBar">
  16. <div class="group"><a class="link add" href="edit.ht"><span></span>添加</a></div>
  17. </div>
  18. </div>
  19. </div>
  20. <div class="panel-body">
  21. <c:set var="checkAll">
  22. <input type="checkbox" id="chkall"/>
  23. </c:set>
  24. <display:table name="sysSensitileWordsList" id="sysSensitileWordsItem" requestURI="list.ht" sort="external" cellpadding="1" cellspacing="1" class="table-grid">
  25. <display:column title="${checkAll}" media="html" style="width:30px;">
  26. <input type="checkbox" class="pk" name="id" value="${sysSensitileWordsItem.id}">
  27. </display:column>
  28. <display:column property="sensitivewordscount" title="敏感词项" sortable="true" sortName="SENSITIVEWORDSCOUNT" maxLength="80"></display:column>
  29. <display:column title="管理" media="html" style="width:220px">
  30. <a href='edit.ht?id=${sysSensitileWordsItem.id}&taskId=${sysSensitileWordsItem.taskId}' class="link edit">处理</a>
  31. </display:column>
  32. </display:table>
  33. <hotent:paging tableId="sysSensitileWordsItem"/>
  34. </div><!-- end of panel-body -->
  35. </div> <!-- end of panel -->
  36. </body>
  37. </html>