Arquivos
ziqim/Yangcai365_web/manage/zview/order/presenter/quickContact.zml
T
2025-02-20 14:59:35 +08:00

115 linhas
5.3 KiB
Plaintext

<script>
function showLargeImg(url)
{
var hostUrl = Z.l.protocol+'//'+Z.l.host;
var dialog = new parent.Z.Dialog();
dialog.shadow = true;
dialog.title = "服务群二维码图片";
dialog.fixed = true;
dialog.url = hostUrl+"/showLargeImg.htm?imgpath="+url;
dialog.width = parent.Z.D.clientWidth()-1200;
dialog.height = parent.Z.D.clientHeight()-400;
dialog.execute();
dialog.$background.remove();
}
</script>
<!--标题部分-->
<div id="title_content" class="z-hide">
<div class="z-bold">
<div class="z-float-left z-pd10 z-mg-t3">订单【${order.getDesignId()}】快捷联系方式</div>
</div>
</div>
<div class="z-pd20">
<div class="z-w100p zi-pd20">
<!--扬彩服务渠道-->
<#if order.getMerchantId() == "2019491431057">
<#if order.getShopNick() == "领淘">
<div class="z-h40 z-mg-t-20" style="border-bottom:rgb(211, 211, 211) 1px dashed;">
<div class="z-float-left zi-mg-t18 " style="width:200px">
<span class="z-bold">售前客服:</span>玉米
</div>
<div class="z-float-left zi-mg-t18" style="width:200px">
<span class="z-bold">联系电话:</span>15200463922
</div>
<div class="z-float-left zi-mg-t18" style="width:200px">
<span class="z-bold">个人微信:</span>15200463922
</div>
</div>
<#else>
<div class="z-h40 z-mg-t-20" style="border-bottom:rgb(211, 211, 211) 1px dashed;">
<div class="z-float-left zi-mg-t18 " style="width:200px">
<span class="z-bold">售前客服:</span>玲珑
</div>
<div class="z-float-left zi-mg-t18" style="width:200px">
<span class="z-bold">联系电话:</span>13667316513
</div>
<div class="z-float-left zi-mg-t18" style="width:200px">
<span class="z-bold">个人微信:</span>13667316513
</div>
</div>
</#if>
<!--淘印通渠道-->
<#elseif order.getMerchantId() == "1920862616055">
<div class="z-h40 z-mg-t-20" style="border-bottom:rgb(211, 211, 211) 1px dashed;">
<div class="z-float-left zi-mg-t18 " style="width:200px">
<span class="z-bold">售前客服:</span>木易
</div>
<div class="z-float-left zi-mg-t18" style="width:200px">
<span class="z-bold">联系电话:</span>15874971979
</div>
<div class="z-float-left zi-mg-t18" style="width:200px">
<span class="z-bold">个人微信:</span>15874971979
</div>
</div>
<!--小程序渠道-->
<#elseif order.getMerchantId() == "2000922684001">
<div class="z-h40 z-mg-t-20" style="border-bottom:rgb(211, 211, 211) 1px dashed;">
<div class="z-float-left zi-mg-t18 " style="width:200px">
<span class="z-bold">售前客服:</span>崔崔
</div>
<div class="z-float-left zi-mg-t18" style="width:200px">
<span class="z-bold">联系电话:</span>13786298968
</div>
<div class="z-float-left zi-mg-t18" style="width:200px">
<span class="z-bold">个人微信:</span>13786298968
</div>
</div>
<#else>
<div class="z-h40 z-mg-t-20" style="border-bottom:rgb(211, 211, 211) 1px dashed;">
<div class="z-float-left zi-mg-t18" style="width:200px">
<span class="z-bold">售前客服:</span>${createrDesigner.getOperatorCode()}
</div>
<div class="z-float-left zi-mg-t18 z-mg-l20 " style="width:200px">
<span class="z-bold">联系电话:</span>${createrDesigner.getOperatorMobile()}
</div>
<div class="z-float-left zi-mg-t18 z-mg-l20 " style="width:200px">
<span class="z-bold">个人微信:</span>${createrDesigner.getOperatorWxcode()}
</div>
</div>
</#if>
</div>
</div>
<div class="z-pd20">
<div class="z-w100p zi-pd20">
<div class="z-h140 z-mg-t-20" style="border-bottom:rgb(211, 211, 211) 1px dashed;">
<div class="z-float-left zi-mg-t18" style="width:360px">
<#if Validates.isNotEmptyBlank(order.getCustomerQrcodeUrl())>
<span class="z-bold">对稿沟通群服务二维码:</span>
<img src="${order.getCustomerQrcodeUrl()}" onclick="showLargeImg('${order.getCustomerQrcodeUrl()}')" width="130px" height="130px" style="cursor: pointer;">
<#else>
<#if order.getShopNick() == "领淘">
<span class="z-bold">对稿沟通:</span> 企业微信搜索:${order.getUserContact()}&nbsp;&nbsp;${order.getUserMobile()}
<#else>
对稿沟通请联系售前客服
</#if>
</#if>
</div>
</div>
</div>
</div>
<#-- 操作 -->
<div class="z-absolute z-w100p z-h80 z-text-center z-bg-gray" style="bottom:0;left:0">
<button class="z-button z-w150 z-h50 z-mg-t15 z-mg-l5 z-mg-l20 zi-px22" type="button" onclick="Z.Dialog.close();">关闭</button>
</div>