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

40 lines
1.5 KiB
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.
-->
<form id="shortcuts_from" method="post" action="index.php?app=desktop&ctl=default&act=set_shortcuts">
<div class="gridlist">
<{foreach from=$menus item=item}>
<div class="row"><div class="row-line" style="padding:0 10px;"><strong><{$item.menu_title}></strong></div></div>
<{foreach from=$item.menu_group item=item1 key=key}>
<div class="row"><div class="row-line" style="padding:0 20px;">
<div class="span-2"><{$key}> --</div>
<{foreach from=$item1 item=item2}>
<div class="span-auto">
<label><input style="float:left;" type="checkbox" name="shortcuts[]" value="<{$item2.menu_title}>|<{$item2.menu_path}>" <{if $item2.menu_path|in_array:$shortcuts_menus}>checked<{/if}>/> <strong style="line-height: 36px;padding-left: 10px;"><{$item2.menu_title}></strong></label>
</div>
<{/foreach}>
</div>
</div>
<{/foreach}>
<div class="clear"></div>
<{/foreach}>
</div>
<{area inject=".mainFoot"}>
<div class="table-action">
<{button label=$___desktop="确定"|t:'desktop' class="btn-primary" type="submit" onclick="$('shortcuts_from').fireEvent('submit',{stop:function(){}})"}>
<{button label=$___desktop="取消"|t:'desktop' class="btn-secondary" isCloseDialogBtn='true' }>
</div>
<{/area}>
<script>
$('shortcuts_from').store('target',{
onComplete:function(){
location.reload();
}
});
</script>
</form>