You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
145 lines
4.2 KiB
145 lines
4.2 KiB
<!DOCTYPE html> |
|
<html lang="en"> |
|
<head> |
|
<meta charset="UTF-8"> |
|
<meta http-equiv="X-UA-Compatible" content="IE=edge"> |
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
<title>回收台账</title> |
|
<style> |
|
body{ |
|
padding: 0; |
|
margin: 0; |
|
} |
|
.max_box{ |
|
width: 756px; |
|
margin: auto; |
|
} |
|
.max_box>div:nth-of-type(1){ |
|
text-align: center; |
|
} |
|
.telbox{ |
|
display: flex; |
|
flex-direction: column; |
|
border: 2px solid #000000; |
|
margin-top: 10px; |
|
} |
|
.titl_tb{ |
|
display: flex; |
|
align-items: center; |
|
flex: 1; |
|
} |
|
.titl_tb>div{ |
|
border-right: 2px solid #000000; |
|
border-bottom: 2px solid #000000; |
|
line-height: 26px; |
|
padding-left: 5px; |
|
font-size: 14px; |
|
} |
|
.titl_tb>div:nth-last-child(1){ |
|
border-right: none; |
|
} |
|
.titl_tb:nth-last-child(1)>div{ |
|
border-bottom: none; |
|
} |
|
.titl_tb>div:nth-of-type(1){ |
|
width: 8%; |
|
} |
|
.titl_tb>div:nth-of-type(2){ |
|
width: 12%; |
|
} |
|
.titl_tb>div:nth-of-type(3){ |
|
width: 10%; |
|
} |
|
.titl_tb>div:nth-of-type(4){ |
|
width:10%; |
|
} |
|
.titl_tb>div:nth-of-type(5){ |
|
width: 10%; |
|
} |
|
.titl_tb>div:nth-of-type(6){ |
|
width: 10%; |
|
} |
|
.titl_tb>div:nth-of-type(7){ /* 车号 */ |
|
width:10%; |
|
} |
|
.titl_tb>div:nth-of-type(8){ |
|
width: 13%; |
|
} |
|
.titl_tb>div:nth-of-type(9){ |
|
width: 10%; |
|
} |
|
.maxbiox{ |
|
display: flex; |
|
flex-direction: column; |
|
} |
|
</style> |
|
<style> |
|
.dayinann{ |
|
width: 100px; |
|
height: 40px; |
|
background-color: #0ea5fd; |
|
color: #ffffff; |
|
border-radius: 5px; |
|
border: none; |
|
outline: none; |
|
margin-top: 50px; |
|
position: relative; |
|
left: 50%; |
|
transform: translate(-50%); |
|
} |
|
</style> |
|
</head> |
|
<body> |
|
<!--startprint--> |
|
<div class="max_box"> |
|
<div>新疆分公司2022年度废旧电缆台账</div> |
|
<div class="telbox"> |
|
<div class="titl_tb"> |
|
<div>序号</div> |
|
<div>物料码</div> |
|
<div>名称</div> |
|
<div>型号规格</div> |
|
<div>单位</div> |
|
<div>数量</div> |
|
<div>存放地点</div> |
|
<div>报废原因</div> |
|
<div>备注</div> |
|
</div> |
|
<div class="maxbiox"> |
|
</div> |
|
</div> |
|
</div> |
|
<!--endprint--> |
|
<button class="dayinann" onclick="preview()">打印</button> |
|
</body> |
|
<script> |
|
let dom1=document.getElementsByClassName('maxbiox')[0] |
|
let htmls='' |
|
for(let i=1;i<10;i++){ |
|
htmls+=`<div class="titl_tb"> |
|
<div>${i}</div> |
|
<div>${i}</div> |
|
<div>电缆</div> |
|
<div>8mm</div> |
|
<div>中国石油</div> |
|
<div>${i+10}</div> |
|
<div>电缆厂</div> |
|
<div>绝缘失效</div> |
|
<div>备注</div> |
|
</div>` |
|
} |
|
dom1.innerHTML=htmls |
|
console.log(dom1); |
|
function preview() { |
|
bdhtml = window.document.body.innerHTML; |
|
sprnstr = "<!--startprint-->"; //开始打印标识字符串有17个字符 |
|
eprnstr = "<!--endprint-->"; //结束打印标识字符串 |
|
prnhtml = bdhtml.substr(bdhtml.indexOf(sprnstr) + 17); //从开始打印标识之后的内容 |
|
prnhtml = prnhtml.substring(0, prnhtml.indexOf(eprnstr)); //截取开始标识和结束标识之间的内容 |
|
window.document.body.innerHTML = prnhtml; //把需要打印的指定内容赋给body.innerHTML |
|
window.print(); //调用浏览器的打印功能打印指定区域 |
|
window.document.body.innerHTML = bdhtml; //重新给页面内容赋值; |
|
return false; |
|
} |
|
</script> |
|
</html> |