汇联通执法队后台管理系统
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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. ]