Files
OMS/app/eccommon/view/regions/area_edit.html
2026-01-04 19:08:31 +08:00

62 lines
2.6 KiB
HTML

<!--
Copyright 2012-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.
-->
<form method="POST" action="index.php?app=eccommon&ctl=regions&act=saveDlArea" target="{update:'messagebox'}" class="tableform" id="area_edit_form">
<div class="division">
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<th><{t}>地区名称:<{/t}><input type="hidden" name="region_id" value="<{$area.region_id}>"></th>
<td><input type="text" vtype="required" name="local_name" maxlength="20" value="<{$area.local_name}>"></td>
</tr>
<tr>
<th><{t}>上级地区:<{/t}></th>
<td>
<input type='text' readonly="true" id="set_p_region_name" onclick='regionSelect(this);' class="lnk" value='<{if $area.parent_name==""}><{t}>[无上级]<{/t}><{else}><{$area.parent_name}><{/if}>'/><span class="notice-inline"><{t}>点击输入框可以更换地区的上级节点<{/t}></span>
<input type='hidden' id="set_p_region_id" name='p_region_id' value='<{$area.p_region_id}>'/>
</td>
</tr>
<tr>
<th><{t}>排序:<{/t}></th>
<td><input type="number" name="ordernum" vtype="digits" size="2" class="_x_ipt" value="<{$area.ordernum|default:0}>"><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+'&p[1]',{
width:270,height:340,params:{iptText:el,iptHidden:el.getParent().getElement('input[type=hidden]')}});
});
}
$('area_edit_form').store('target',{
onComplete:function(){
if($('area_edit_form').getParent('.dialog'))
$('area_edit_form').getParent('.dialog').retrieve('instance').close();
}
});
</script>