汇联通执法队后台管理系统
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213141516171819202122
  1. <%@ page contentType="text/html;charset=utf-8"%>
  2. <%@ include file="/WEB-INF/jsp/include.jsp"%>
  3. <tr
  4. data-tt-id="${vo.id}"
  5. <c:if test="${vo.unitLevel!=0 }">data-tt-parent-id="${vo.parentId}" </c:if>
  6. >
  7. <td>
  8. <c:if test="${vo.hasChild }"><i class="text-warning fa fa-folder fa-lg m-r-5"></i>${fn:escapeXml(vo.name)}</c:if>
  9. <c:if test="${!vo.hasChild }"><i class="text-warning fa fa-file fa-lg m-r-5"></i>${fn:escapeXml(vo.name)}</c:if>
  10. </td>
  11. <td style="width: 60px">${fn:escapeXml(vo.list)}</td>
  12. <td>
  13. <a href="${rootUrl}app/acl/unit/add/${vo.id}" class="taiji_modal taiji_acl">添加下级单位</a>
  14. <a href="${rootUrl}app/acl/unit/edit/${vo.id}" class="taiji_modal taiji_acl">修改</a>
  15. <c:if test="${vo.unitLevel!=0 }">
  16. <a href="${rootUrl}app/acl/unit/delete/${vo.id}" class="taiji_remove {confirm_message:'你确定要删除吗? '} taiji_acl">删除</a>
  17. </c:if>
  18. </td>
  19. </tr>