Files
OMS/app/ome/view/admin/system/cloudkefu.html
2026-01-04 17:22:44 +08:00

69 lines
2.3 KiB
HTML

<!--
Copyright 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.
-->
<{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="cloudkefu_conf" value='1' <{if $cloudkefu_conf=='1'}>checked<{/if}>> 是
<input type="radio" name="cloudkefu_conf" value='0' <{if $cloudkefu_conf=='0' || $cloudkefu_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 cloudkefu_conf= $E('input[type=radio]:checked').get('value');
new Request({
url:'index.php?app=ome&ctl=admin_shop&act=cloudkefu',
data:"&shop_id="+"<{$shop_id}>&cloudkefu_conf="+cloudkefu_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>