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

26 lines
888 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.
-->
<div class="notice" style="line-height:30px">
<button style="float:right;padding:3px 10px" onclick="$('recycle_from').fireEvent('submit',new Event(event))" ><{t}>确定删除<{/t}></button>
<button style="float:right;padding:3px 10px" class="btn-close frt" isCloseDialogBtn="true" ><{t}>取消删除<{/t}></button>
<{t}>对选择的<{/t}><b><{$count}></b><{t}>个条目进行删除操作<{/t}>
</div>
<form action="<{$url}>&action=dorecycle" method="post" id="recycle_from">
<input type="hidden" name="_PKEY_" value="<{$selected_item}>" class="pkey"/>
</form>
<hr style="clear:both" />
<script>
$('recycle_from').store('target',{
onComplete:function(){
finderDialog.close();
}
});
</script>