Files
OMS/app/crm/view/admin/gift/show_pkg.html
2025-12-28 23:13:25 +08:00

23 lines
839 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 id='sm-selected-body'>
<{include file="finder/input-row.html" app="inventorydepth"}>
</div>
<{area inject=".mainFoot"}>
<div class='table-action'>
<{button label='确定' id='primary-btn' onclick='change_sm();'}>
</div>
<{/area}>
<script>
function change_sm(){
var handle = $('hand-selected-sm').getNext('div');
handle.setHTML($('sm-selected-body').innerHTML);
var length = $('sm-selected-body').getElements('.row').length;
var html = '已选择了'+length+'个销售物料,'+"<a href='javascript:void(0);' onclick='sm_selected_show();'>查看选中销售物料.</a>";
$('hand-selected-sm').setHTML(html);
$('primary-btn').getParent('.dialog').retrieve('instance').close();
}
</script>