⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 partyrolepermissionhierarchylist.jsp

📁 一个很好的开源项目管理系统源代码
💻 JSP
字号:
<%@ include file="../includes/taglibs.jsp" %><%@ include file="../includes/crumbs.jsp" %><div id="list">  <table>    <thead>      <tr>        <th class="required"><spring:message code="roleCd" /></th>        <th><spring:message code="targetCd" /></th>        <th><spring:message code="operationCd" /></th>      </tr>    </thead>    <tbody>      <jsp:useBean id="rowHelper" class="net.java.workeffort.infrastructure.view.RowHelper" />      <c:forEach var="row" items="${resultList}">        <c:set var="rowCss" value="${rowHelper.rowCss}"/>        <c:if test='${param.roleCd == row.roleCd}'>          <c:set var="rowCss" value="highlightRow" />        </c:if>        <tr class="<c:out value='${rowCss}' />" >          <c:set var="level" value='${row.level}' />          <td>            <%              /* indent for display depending on the level  */              Integer level = (Integer) pageContext.getAttribute("level");              if (level != null && level.intValue() > 0) {                 for(int i=0; i< level.intValue(); i++) {                   	out.print("&nbsp;&nbsp;&nbsp;&nbsp;");                 }              }            %>            <c:out value="${row.roleCd}" />          </td>          <td>            <c:out value="${row.targetCd}" />          </td>          <td>            <c:out value="${row.operationCd}" />          </td>        </tr>      </c:forEach>    </tbody>  </table></div>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -