Files
OMS/app/eccommon/view/regions/area_new.html
2025-12-28 23:13:25 +08:00

50 lines
1.9 KiB
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.
-->
<form method="post" action="index.php?app=eccommon&ctl=regions&act=addDlArea" class="tableform" id="area_add_form">
<div class="division">
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<th><{t}>地区名称:<{/t}></th>
<td><input type="text" name="local_name" maxlength="20"></td>
</tr>
<tr>
<th><{t}>上级地区:<{/t}></th>
<td>
<input type='text' readonly=true class="lnk" id="set_p_region_name" onclick='regionSelect(this)' value='<{if $parent.local_name == ""}><{t}>[无上级]<{/t}><{else}><{$parent.local_name}><{/if}>'/><span class="notice-inline"><{t}>点击输入框可以更换地区的上级节点<{/t}></span>
<input type='hidden' id="set_p_region_id" name='p_region_id' value='<{$parent.region_id}>'/>
</td>
</tr>
<tr>
<th><{t}>排序:<{/t}></th>
<td><input type="number" name="ordernum" size="2" vtype="digits" class="_x_ipt" value="50"><span class="notice-inline"><{t}>数字越小越靠前<{/t}></span></td>
</tr
></table>
</div>
<div class="table-action">
<{button label=$___ectools="保存"|t:'eccommon' type="submit"}><input type="hidden" name="package" value="mainland">
<{button label=$___ectools="取消"|t:'eccommon' isCloseDialogBtn="true"}>
</div>
</form>
<script>
function regionSelect(el){
var el=$(el);
Ex_Loader('modedialog',function(){
new ModeDialog('index.php?app=eccommon&ctl=regions&act=showRegionTreeList&p[0]='+el.uid,{
width:250,height:340,params:{iptText:el,iptHidden:el.getParent().getElement('input[type=hidden]')}});
});
}
$('area_add_form').store('target',{
onComplete:function(){
if($('area_add_form').getParent('.dialog'))
$('area_add_form').getParent('.dialog').retrieve('instance').close();
}
});
</script>