汇联通执法队后台管理系统
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.

treeItem.jsp 516B

1234567891011121314
  1. <%@ page contentType="text/html;charset=utf-8"%>
  2. <%@ include file="/WEB-INF/jsp/include.jsp"%>
  3. [
  4. <c:forEach items="${list}" var="appResource">
  5. <c:choose>
  6. <c:when test="${appResource.menuType eq 'NOT_MENU'}">
  7. {"name":"${appResource.name }","id":"${appResource.menuType }_${appResource.id }", },
  8. </c:when>
  9. <c:otherwise>
  10. {"name":"${appResource.name }","id":"${appResource.menuType }_${appResource.id }","isParent":${appResource.hasChild}},
  11. </c:otherwise>
  12. </c:choose>
  13. </c:forEach>
  14. ]