123456789101112131415161718192021222324252627 |
- <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
- <%@ include file="../common/base.jsp"%>
- <div id="table">
- <table cellspacing="0px" width="500px" style="table-layout:fixed">
- <c:if test="${spIdSet != null && fn:length(spIdSet) > 0}">
- <tr class="fisrtTr">
- <th width="15px;">选项</th>
- <th width="150px;">系统名称</th>
- <th width="150px;">系统路径</th>
- </tr>
- <c:forEach items="${spIdSet}" var="dis" varStatus="s">
- <tr>
- <td>
- <input type="checkbox" name="disName" value="${dis.spId}">
- </td>
- <td>${dis.name}</td>
- <td>${dis.url}</td>
- </tr>
- </c:forEach>
- </c:if>
- <c:if test="${spIdSet == null || fn:length(spIdSet) == 0}">
- <tr>
- <td colspan="3"><span style="color: red">暂无其他应用信息</span></td>
- </tr>
- </c:if>
- </table>
- </div>
|