Files
OMS/app/desktop/view/common/dialog_recycle.html
2026-01-04 17:22:44 +08:00

37 lines
1.3 KiB
HTML

<!--
Copyright 2026 ShopeX (https://www.shopex.cn)
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<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>