mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-31 13:25:32 +08:00
26 lines
888 B
HTML
26 lines
888 B
HTML
<!--
|
||
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> |