mirror of
https://gitee.com/ShopeX/OMS
synced 2026-04-09 16:05:33 +08:00
23 lines
863 B
HTML
23 lines
863 B
HTML
<!--
|
||
Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
See LICENSE file for license details.
|
||
-->
|
||
|
||
<div id='shop-selected-body'>
|
||
<{include file="admin/series/input-row-shop.html" app="dealer"}>
|
||
</div>
|
||
<{area inject=".mainFoot"}>
|
||
<div class='table-action'>
|
||
<{button label='确定' id='primary-btn' onclick='change_shops();'}>
|
||
</div>
|
||
<{/area}>
|
||
<script>
|
||
function change_shops(){
|
||
var handle = $('hand-selected-shop').getNext('div');
|
||
handle.setHTML($('shop-selected-body').innerHTML);
|
||
var length = $('shop-selected-body').getElements('.row').length;
|
||
var html = '已选择了'+length+'个经销店铺,'+"<a href='javascript:void(0);' onclick='shop_selected_show();'>查看选中的经销店铺.</a>";
|
||
$('hand-selected-shop').setHTML(html);
|
||
$('primary-btn').getParent('.dialog').retrieve('instance').close();
|
||
}
|
||
</script> |