Files
SIPAIIS_WMS_JSSW/WebRoot/jsp/base/print.html
2026-01-16 14:13:44 +08:00

42 lines
982 B
HTML

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>数据打印</title>
<style type="text/css">
body {
background: white;
margin: 0px;
padding: 0px;
font-size: 13px;
text-align: left;
}
.pb {
font-size: 13px;
border-collapse: collapse;
}
.pb th {
font-weight: bold;
text-align: center;
border: 1px solid #333333;
padding: 2px;
}
.pb td {
border: 1px solid #333333;
padding: 2px;
}
</style>
</head>
<body>
<script type="text/javascript">
var win=document.write(window.dialogArguments);
win.document.close();
window.print();
//window.close();
</script>
</body>
</html>