100 lines
3.3 KiB
Plaintext
100 lines
3.3 KiB
Plaintext
@model WX.CRM.Model.Entity.SzzyWXMultiplePayUrlResult
|
||
@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="55%"><div class="noindent">
|
||
|
||
<h4>建设银行:</h4>
|
||
<p>
|
||
上海证券之星综合研究有限公司 <br />
|
||
开户银行名称:建设银行向城路支行<br />
|
||
开户银行账号:3100 1520 3310 5000 3084
|
||
</p>
|
||
<h4>工商银行:</h4>
|
||
<p>
|
||
上海证券之星综合研究有限公司 <br />
|
||
开户银行名称:工商银行上海科苑支行<br />
|
||
开户银行账号:1001 1334 1900 6714 646
|
||
</p>
|
||
<h4>招商银行:</h4>
|
||
<p>
|
||
上海证券之星综合研究有限公司 <br />
|
||
开户银行名称:招商银行上海张杨支行<br />
|
||
开户银行账号:1219 0848 3110 203
|
||
</p>
|
||
</div></td>
|
||
<td width="45%">
|
||
<div class="payment">
|
||
<h4 class="red mode" style="margin-bottom:30px;margin-top:10px;">微信支付二维码:</h4>
|
||
|
||
@if (Model.ret == 0 && Model.data != null)
|
||
{
|
||
foreach (var item in Model.data)
|
||
{
|
||
<div class="bank">
|
||
<img src="/WeiXin/SzzyOrder/GetQRCode?url=@item.url" alt="" />
|
||
</div>
|
||
}
|
||
|
||
<!--<div style="margin-top:30px;">
|
||
<input type="submit" name="btn_copy" value="复制" id="btn_submit" onclick="copyToClipboard('qrCodeText', 'btn_submit')" onmousemove="copyToClipboard('qrCodeText', 'btn_submit')"/>
|
||
</div>-->
|
||
}
|
||
else
|
||
{
|
||
<div style="color:red">
|
||
@Model.msg
|
||
</div>
|
||
}
|
||
|
||
</div>
|
||
</td>
|
||
</tr>
|
||
</table>
|
||
</div>
|
||
@if (Model.ret == 0 && Model.data != null)
|
||
{
|
||
<div class="company" style="margin:50px 20px 20px;">
|
||
<p>支付页面url:</p>
|
||
<br />
|
||
@foreach (var item in Model.data)
|
||
{
|
||
<a href="http://app.hc.szzy888.com/activity/00000010.html?qrcode=@HttpUtility.UrlEncode(item.url)" target="_blank">http://app.hc.szzy888.com/activity/00000010.html?qrcode=@HttpUtility.UrlEncode(item.url)</a><br/>
|
||
}
|
||
</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>
|
||
|
||
|
||
|