Files
OMS/app/desktop/view/system/adminpanel.html
2025-12-28 23:13:25 +08:00

31 lines
996 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!--
Copyright © ShopeX http://www.shopex.cn. All rights reserved.
See LICENSE file for license details.
-->
<h1 class="head-title" style="border:none"><{t}>控制面板<{/t}></h2>
<div class="admin-panel" id="adminpanel">
<{foreach from=$groups name=groups item=group}>
<{if $group.items}>
<div class="group flt <{if $env.foreach.groups.last}>last<{/if}>">
<div class="flt">
<img src="<{$group.icon}>" width=64 />
</div>
<div class="item">
<h4><{$group.title|t:'desktop'}></h4>
<ul>
<{foreach from=$group.items item=item}>
<li class="span-auto"><a href="index.php?<{$item.menu_path}>"><{$item.menu_title|t:'desktop'}></a></li>
<{/foreach}>
</ul>
</div>
</div>
<{/if}>
<{/foreach}>
</div>
<script>
new Equalizer($$('#adminpanel .item li a')).equalize('width');//等宽
new Equalizer($$('#adminpanel .group')).equalize('height');//等宽
</script>