优化单页打印

This commit is contained in:
Minho
2018-06-06 22:40:12 +08:00
parent 152d71a5a0
commit b18147f32c
3 changed files with 15 additions and 19 deletions

View File

@@ -46,7 +46,7 @@
<span style="font-size: 12px;font-weight: 100;"></span>
</div>
<div class="navbar-header pull-right manual-menu">
<button id="printSinglePage" class="btn btn-default" style="margin-right: 10px;"><i class="fa fa-print"></i> 打印</button>
<a href="javascript:window.print();" id="printSinglePage" class="btn btn-default" style="margin-right: 10px;"><i class="fa fa-print"></i> 打印</a>
{{if gt .Member.MemberId 0}}
{{if gt .Model.RelationshipId 0}}
{{if eq .Model.RoleId 0 1 2}}
@@ -295,14 +295,6 @@ $(function () {
return $(body).highlight(window.keyword);
});
});
//
$("#printSinglePage").on("click",function () {
var body = $("body");
var bodyContent = body.html();
body.html($(".manual-right").html());
window.print();
body.html(bodyContent);
});
});
</script>