mirror of
https://gitee.com/ShopeX/OMS
synced 2026-04-01 05:26:43 +08:00
29 lines
1013 B
HTML
29 lines
1013 B
HTML
<!--
|
||
Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
See LICENSE file for license details.
|
||
-->
|
||
|
||
<{foreach from=$temps item=item name="_s"}>
|
||
<input type="radio" name="extemp_id" class="extemp_id" vtype="requiredradio" value="<{$item.et_id}>" <{if $smarty.foreach._s.first}>checked="checked"<{/if}> /><label><{$item.et_name}></label>
|
||
<{/foreach}>
|
||
<div id="expmbdetail">
|
||
</div>
|
||
<script>
|
||
$ES('.extemp_id').each(function(e){
|
||
if(e.checked){
|
||
var extemp_id = e.value;
|
||
new Request.HTML({
|
||
update:'expmbdetail',
|
||
url:'index.php?index.php?app=desktop&ctl=export&act=getTempDetail&tp_id='+extemp_id,
|
||
}).send();
|
||
}
|
||
|
||
e.addEvent('click',function(){
|
||
var extemp_id = this.value;
|
||
new Request.HTML({
|
||
update:'expmbdetail',
|
||
url:'index.php?index.php?app=desktop&ctl=export&act=getTempDetail&tp_id='+extemp_id,
|
||
}).send();
|
||
})
|
||
});
|
||
</script> |