YNICTE/FO/Views/Open/CertPrint.cshtml

27 lines
1.1 KiB
Plaintext
Raw Normal View History

2020-10-12 14:39:23 +09:00
@model NP.Model.VMMy
@{
Layout = "~/Views/Shared/_LayoutPrint.cshtml";
}
<div style="text-align: center; padding: 10px 0; border: 1px solid #ddd; background-color: #ddd" class="printNonArea">
<div class="text-center">
<div style="color: red;">* 인쇄설정에서 머리글과 바닥글을 표시제외하고 배경이미지를 활성화 해주세요.</div>
<div style="padding: 10px 20px;">
<a href="#" title="인쇄" onclick="fnPrint();" style="border: 1px solid #238dfa; color: #238dfa; padding: 5px 20px;">인쇄</a>&nbsp;&nbsp;
<a href="#" title="취소" onclick="self.close();" style="border: 1px solid #000; color: #000; padding: 5px 20px;">취소</a>
</div>
</div>
</div>
@Html.Partial("./Partial/Cert" + (Model.Lect.pcgcode == ViewBag.TestCode ? "2" : "1"), Model)
<div class="printNonArea" style="height: 85px;">&nbsp;</div>
@section scriptsHeader{
}
@section scripts{
<script>
$(document).ready(function () {
if (@Model.Lect.lectno == 0) {
self.close();
}
});
</script>
}