119 lines
3.8 KiB
Plaintext
119 lines
3.8 KiB
Plaintext
@using WX.CRM.WebHelper;
|
||
@using System.Web;
|
||
<style>
|
||
.sdRgt {
|
||
margin: 20px;
|
||
}
|
||
|
||
.noindent {
|
||
margin-top: 20px;
|
||
padding-left: 50px;
|
||
font-size: 12px;
|
||
}
|
||
|
||
.noindent h4 {
|
||
font-weight: normal;
|
||
margin-top: 15px;
|
||
}
|
||
|
||
.noindent p {
|
||
margin-left: 10px;
|
||
line-height: 25px;
|
||
}
|
||
|
||
.mode {
|
||
font-size: 14px;
|
||
font-weight: normal;
|
||
}
|
||
|
||
.company {
|
||
margin-top: 40px;
|
||
font-size: 16px;
|
||
}
|
||
</style>
|
||
@{
|
||
ViewBag.Title = "支付信息";
|
||
Layout = "~/Views/Shared/_Index_LayoutEdit.cshtml";
|
||
|
||
}
|
||
|
||
|
||
<div class="sdRgt">
|
||
<table width="100%">
|
||
<tr>
|
||
<td width="50%">
|
||
<div class="payment" style="padding-left:30px;">
|
||
@*<h4 class="red mode" style="margin-bottom: 30px; margin-top: 10px;">支付宝二维码:</h4>*@
|
||
|
||
@*<div class="bank">
|
||
<p style="margin-top:10px;">支付宝二维码:</p>
|
||
</div>*@
|
||
<div class="bank">
|
||
<img src="~/Content/Images/zfb.jpg?1113" width="275" height="400" />
|
||
</div>
|
||
</div>
|
||
</td>
|
||
<td width="50%" valign="top">
|
||
@*<div class="bank">
|
||
<p style="margin-top:10px;">微信二维码:</p>
|
||
</div>*@
|
||
<div class="bank">
|
||
<img src="~/Content/Images/wx.jpg?1113" width="300" height="400" />
|
||
</div>
|
||
</td>
|
||
</tr>
|
||
<tr><td colspan="2">
|
||
<h4 style="font-size:16px; margin-top:10px;">开户行:招商银行股份有限公司广州万博支行</h4>
|
||
<p style="font-size:16px;line-height:30px;">
|
||
户 名:东高(广东)科技发展有限公司 账 号:110905783010402
|
||
</p>
|
||
</td>
|
||
</tr>
|
||
@*<tr>
|
||
<td width="30%"></td>
|
||
<td>
|
||
<h4 style="font-size:18px;">工商银行:</h4>
|
||
<p style="font-size:16px;line-height:30px;">
|
||
上海证券之星综合研究有限公司 <br />
|
||
开户银行名称:中国工商银行科苑路支行<br />
|
||
开户银行账号:1001 1334 1900 6714 646
|
||
</p>
|
||
</td>
|
||
<tr>
|
||
<td colspan="2">
|
||
<p style="font-size:14px;line-height:25px;margin-top:100px;">
|
||
<span style="font-size:16px;color:red">温馨提醒:</span><br />
|
||
|
||
总部财务付款渠道全面升级更新,现在招行也开始进行升级更新。为了不影响客服付款和开通,总部临时开通了工行付款渠道,从6月13日开始,统一付款到公司的工行。<br/>
|
||
(对于之前已经发送招行账号的客户,本周内,可以让客户支付)
|
||
</p>
|
||
</td>
|
||
</tr>
|
||
</tr>*@
|
||
</table>
|
||
</div>
|
||
@*@if (Model.ret == 0)
|
||
{
|
||
<div class="company" style="margin:50px 20px 20px;">
|
||
<p>支付页面url:</p>
|
||
<br />
|
||
<a href="http://app.hc.szzy888.com/activity/00000010.html?qrcode=@HttpUtility.UrlEncode(Model.url)" target="_blank">http://app.hc.szzy888.com/activity/00000010.html?qrcode=@HttpUtility.UrlEncode(Model.url)</a>
|
||
</div>
|
||
}*@
|
||
|
||
<script>
|
||
function copyToClipboard(txt, id) {
|
||
var clip = new ZeroClipboard.Client();
|
||
clip.setHandCursor(true);
|
||
var text = document.getElementById(txt).value;
|
||
clip.setText(text);
|
||
clip.glue(id);
|
||
clip.addEventListener("complete", function () {
|
||
alert("复制成功,你可以使用Ctrl+V 粘贴!");
|
||
});
|
||
}
|
||
</script>
|
||
|
||
|
||
|