12345678910111213141516171819202122232425262728293031323334353637383940 |
- <%@ page contentType="text/html;charset=utf-8"%>
- <%@ include file="/WEB-INF/jsp/include.jsp"%>
-
- <tr>
- <td>${fn:escapeXml(voStatus.count)}</td>
- <td>${fn:escapeXml(vo.orgName)}</td>
- <td>${fn:escapeXml(vo.orgLevel.value)}</td>
- <td>${fn:escapeXml(vo.orgSuperiorName)}</td>
-
- <td><javatime:format value="${vo.insertTime}"
- pattern="yyyy-MM-dd HH:mm:ss" /></td>
- <td><javatime:format value="${vo.updateTime}"
- pattern="yyyy-MM-dd HH:mm:ss" /></td>
- <td><c:if test="${not empty vo.orgLevel}">
- <c:if test="${vo.orgLevel == 'ONE'}">
- <a href="${rootUrl}app/zfdorg/views/${vo.id}"
- class="taiji_modal taiji_acl">查询详情</a>
- <a href="${rootUrl}app/zfdorg/view/${vo.id}"
- class="taiji_modal taiji_acl">添加下级组织</a>
- <%-- <a href="${rootUrl}app/zfdorg/edit/${vo.id}" class="taiji_modal taiji_acl">修改信息</a> --%>
- <a href="${rootUrl}app/zfdorg/delete/${vo.id}"
- class="taiji_remove {confirm_message:'你确定要删除吗? '} taiji_acl">删除</a>
- </c:if>
- <c:if test="${vo.orgLevel == 'TWO'}">
- <a href="${rootUrl}app/zfdorg/views/${vo.id}"
- class="taiji_modal taiji_acl">查询详情</a>
- <a href="${rootUrl}app/zfdorg/view/${vo.id}"
- class="taiji_modal taiji_acl">添加下级组织</a>
- <%-- <a href="${rootUrl}app/zfdorg/edit/${vo.id}" class="taiji_modal taiji_acl">修改信息</a> --%>
- <a href="${rootUrl}app/zfdorg/delete/${vo.id}"
- class="taiji_remove {confirm_message:'你确定要删除吗? '} taiji_acl">删除</a>
- </c:if>
- <c:if test="${vo.orgLevel == 'THREE'}">
- <a href="${rootUrl}app/zfdorg/views/${vo.id}"
- class="taiji_modal taiji_acl">查询详情</a>
- <a href="${rootUrl}app/zfdorg/delete/${vo.id}"
- class="taiji_remove {confirm_message:'你确定要删除吗? '} taiji_acl">删除</a>
- </c:if>
- </c:if></td>
- </tr>
|