-
-
Notifications
You must be signed in to change notification settings - Fork 9.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
想问一下主题开发怎么实现首页底部分组的效果 #906
Labels
kind/support
Categorizes issue or PR as a support question.
Comments
目前的菜单支持分组和多级,所以实现你这种难度不是很大,但是目前来说可能配置比较繁琐。 可以使用 menu 的自定义标签 <@menuTag method="treeByTeam" team="xxx">
<#list menus as menu>
<li>
<a href="${menu.url!}">${menu.name!}</a>
<#if menu.children?? && menu.children?size gt 0>
<ul>
<#list menu.children as child>
<li>
<a href="${child.url!}">${child.name!}</a>
</li>
</#list>
</ul>
</#if>
</li>
</#list>
</@menuTag> 其中 |
哦,那就是一开始我在添加菜单的时候就要分组 把顶部菜单和底部菜单区分开来 |
@52Lau 没错 |
好的,谢谢 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
菜单有分组,但是想实现的这种效果又不是菜单,所以想问下,有什么办法实现这种效果
主题的配置list?好像成本大
The text was updated successfully, but these errors were encountered: