Files
juipnet/Host/Views/Shared/Components/PayOk/Default.cshtml
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

69 lines
1.8 KiB
Plaintext

<style>
/* 支付成功弹窗开始 */
.paylayer {
position: fixed;
z-index: 999;
width: 360px;
height: 500px;
top: 50%;
margin-top: -200px;
left: 50%;
margin-left: -180px;
display: none;
}
.plTop img {
width: 100%;
}
.plFour {
background: #fff;
margin: 0;
padding-bottom: 20px;
}
.plFour img {
width: 90%;
margin: 10px 0;
}
.plClose {
position: absolute;
top: 30px;
right: 10px;
z-index: 999;
}
/* 支付成功弹窗结束 */
</style>
<!-- 支付成功弹窗开始 -->
<div class="paylayer">
<img src="~/img/close.png" class="plClose">
<div class="plTop">
<img src="~/img/payBg.png">
</div>
<div class="row plFour">
<div class="col-lg-6 text-center">
<a asp-action="MyAccounts" asp-controller="User"> <img src="~/img/pl1.png"></a>
</div>
<div class="col-lg-6 text-center">
<a asp-action="Index" asp-controller="LineList"> <img src="~/img/pl2.png"></a>
</div>
<div class="col-lg-6 text-center">
<a asp-action="index" asp-controller="article" asp-route-Catalog="4"> <img src="~/img/pl3.png"></a>
</div>
<div class="col-lg-6 text-center">
<a asp-action="soft" asp-controller="Product"> <img src="~/img/pl4.png"></a>
</div>
</div>
</div>
<script>
$(".plClose").on("click", function () { $(".paylayer").hide(); $(".popmask").hide() })
function showPayOk() {
$(".popmask").show()
$(".paylayer").show();
}
</script>
<!-- 支付成功弹窗结束 -->