spIdList.jsp 1020 B

123456789101112131415161718192021222324252627
  1. <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
  2. <%@ include file="../common/base.jsp"%>
  3. <div id="table">
  4. <table cellspacing="0px" width="500px" style="table-layout:fixed">
  5. <c:if test="${spIdSet != null && fn:length(spIdSet) > 0}">
  6. <tr class="fisrtTr">
  7. <th width="15px;">选项</th>
  8. <th width="150px;">系统名称</th>
  9. <th width="150px;">系统路径</th>
  10. </tr>
  11. <c:forEach items="${spIdSet}" var="dis" varStatus="s">
  12. <tr>
  13. <td>
  14. <input type="checkbox" name="disName" value="${dis.spId}">
  15. </td>
  16. <td>${dis.name}</td>
  17. <td>${dis.url}</td>
  18. </tr>
  19. </c:forEach>
  20. </c:if>
  21. <c:if test="${spIdSet == null || fn:length(spIdSet) == 0}">
  22. <tr>
  23. <td colspan="3"><span style="color: red">暂无其他应用信息</span></td>
  24. </tr>
  25. </c:if>
  26. </table>
  27. </div>