123456789101112131415161718192021222324252627282930313233343536373839 |
- <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
- <%@include file="/commons/include/html_doctype.html" %>
- <html>
- <head>
- <title>SYS_SENSITIVE_WORDS管理</title>
- <%@include file="/commons/include/get.jsp" %>
- </head>
- <body>
- <div class="panel">
- <div class="panel-top">
- <div class="tbar-title">
- <span class="tbar-label">SYS_SENSITIVE_WORDS管理列表</span>
- </div>
- <div class="panel-toolbar">
- <div class="toolBar">
- <div class="group"><a class="link add" href="edit.ht"><span></span>添加</a></div>
- </div>
- </div>
- </div>
- <div class="panel-body">
- <c:set var="checkAll">
- <input type="checkbox" id="chkall"/>
- </c:set>
- <display:table name="sysSensitileWordsList" id="sysSensitileWordsItem" requestURI="list.ht" sort="external" cellpadding="1" cellspacing="1" class="table-grid">
- <display:column title="${checkAll}" media="html" style="width:30px;">
- <input type="checkbox" class="pk" name="id" value="${sysSensitileWordsItem.id}">
- </display:column>
- <display:column property="sensitivewordscount" title="敏感词项" sortable="true" sortName="SENSITIVEWORDSCOUNT" maxLength="80"></display:column>
- <display:column title="管理" media="html" style="width:220px">
- <a href='edit.ht?id=${sysSensitileWordsItem.id}&taskId=${sysSensitileWordsItem.taskId}' class="link edit">处理</a>
- </display:column>
- </display:table>
- <hotent:paging tableId="sysSensitileWordsItem"/>
- </div><!-- end of panel-body -->
- </div> <!-- end of panel -->
- </body>
- </html>
|