Files
OMS/app/ome/view/admin/system/change.html
2025-12-28 23:13:25 +08:00

58 lines
1.8 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.
-->
<{capture name="header"}>
<link href="../apps/ome/statics/ome.css" rel="stylesheet" type="text/css">
<{/capture}>
<div class="tableform">
<{if $shop_id}>
<div class="division">
<input type="hidden" name="shop_id" value="<{$shop_id}>" />
<table>
<tr>
<th>是否开启接收天猫售后换货单</th>
<td>
<input type="radio" name="change_conf" value='1' <{if $change_conf=='1'}>checked<{/if}>> 是
<input type="radio" name="change_conf" value='0' <{if $change_conf=='0' || $change_conf==''}>checked<{/if}>> 否
<span class="red">开启后,将接收天猫售后换货单</span>
</td>
</tr>
</table>
<div class="division">
<{button type="submit" label="保存" class="btn-secondery" id="btn_manual"}>
</div>
</div>
<{else}>
<span class="red">仅天猫店铺换货</span>
<{/if}>
</div>
<script>
if($("btn_manual")){
$("btn_manual").addEvent("click",function(e){
var change_conf= $E('input[type=radio]:checked').get('value');
new Request({
url:'index.php?app=ome&ctl=admin_shop&act=change',
data:"&shop_id="+"<{$shop_id}>&change_conf="+change_conf,
method:'post',
onSuccess:function(response){
var resp = JSON.decode(response);
if(resp.rsp=="fail"){
var msg = resp.msg ? resp.msg : resp.res;
MessageBox.error(msg);
}else{
MessageBox.success("保存成功");
}
}
}).send();
});
}
</script>