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.
181 lines
5.9 KiB
181 lines
5.9 KiB
<!DOCTYPE html> |
|
<html> |
|
|
|
<head> |
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
|
<meta name="renderer" content="webkit"> |
|
<meta name="viewport" |
|
content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no" /> |
|
<meta name="robots" content="index, follow" /> |
|
<title>${field.title}</title> |
|
<meta name="keywords" content="${field.keyword}"> |
|
<meta name="description" content="${field.descrip}"> |
|
<meta http-equiv="Cache-Control" content="no-transform" /> |
|
<meta http-equiv="Cache-Control" content="no-siteapp" /> |
|
<meta name="applicable-device" content="pc,mobile" /> |
|
<link href="/favicon.ico" rel="shortcut icon" /> |
|
<link href="/{ms:global.style/}css/style.css" rel="stylesheet" /> |
|
<link href="/{ms:global.style/}css/css.css" rel="stylesheet" /> |
|
<script src="/{ms:global.style/}js/jquery-1.8.3.min.js"></script> |
|
<script type="text/javascript" src="/{ms:global.style/}js/jquery.superslide.2.1.1.js">//pc导航</script> |
|
<script src="/{ms:global.style/}js/anim.js">//动画</script> |
|
<script type="text/javascript" src="/{ms:global.style/}js/basic.js"></script> |
|
</head> |
|
|
|
<body> |
|
<#include "header.htm" /> |
|
<div class="o_big"> |
|
<h1>${field.typedescrip}</h1> |
|
</div> |
|
<!--正文begin--> |
|
<div class="wrap"> |
|
<div class="chuhuijiyao_nav"> |
|
<a href='http://192.168.1.104:8080/html/web/index.html'>首页<a>><a |
|
href='http://192.168.1.104:8080/html/web/zhibanbeiqin/index.html'>${field.typetitle}</a> |
|
</div> |
|
<h1 class="chuhuijiyao_title">${field.typetitle}</h1> |
|
<div class="dateCard"> |
|
<li id="z_year1"></li> |
|
<li id="z_year2"></li> |
|
<li id="z_year3"></li> |
|
<li id="z_year4"></li> |
|
<div>年</div> |
|
<li id="z_month1"></li> |
|
<li id="z_month2"></li> |
|
<div>月</div> |
|
<li id="z_day1"></li> |
|
<li id="z_day2"></li> |
|
<div>日</div> |
|
</div> |
|
<div class="tableHeader"> |
|
<div>日期</div> |
|
<div>带班长</div> |
|
<div>副带班长</div> |
|
<div>守机员</div> |
|
<div>值班人员</div> |
|
<div>北岭值班员</div> |
|
</div> |
|
<div class="tableBody"> |
|
<div class="tableBody_item"> |
|
<div>2024/03/01</div> |
|
<div>汪新</div> |
|
<div>蔡小年</div> |
|
<div>杨大力</div> |
|
<div>贾金龙</div> |
|
<div>马魁156 1234 5678</div> |
|
</div> |
|
<div class="tableBody_item"> |
|
<div>2024/03/01</div> |
|
<div>汪新</div> |
|
<div>蔡小年</div> |
|
<div>杨大力</div> |
|
<div>贾金龙</div> |
|
<div>马魁156 1234 5678</div> |
|
</div> |
|
<div class="tableBody_item"> |
|
<div>2024/03/01</div> |
|
<div>汪新</div> |
|
<div>蔡小年</div> |
|
<div>杨大力</div> |
|
<div>贾金龙</div> |
|
<div>马魁156 1234 5678</div> |
|
</div> |
|
<div class="tableBody_item"> |
|
<div>2024/03/01</div> |
|
<div>汪新</div> |
|
<div>蔡小年</div> |
|
<div>杨大力</div> |
|
<div>贾金龙</div> |
|
<div>马魁156 1234 5678</div> |
|
</div> |
|
</div> |
|
</div> |
|
<!--正文end--> |
|
<#include "footer.htm" /> |
|
<script language="javascript" src="/{ms:global.style/}js/foot.js"></script><!--尾部end--> |
|
<script> |
|
//年 |
|
document.getElementById('z_year1').innerText = String(new Date().getFullYear())[0]; |
|
document.getElementById('z_year2').innerText = String(new Date().getFullYear())[1]; |
|
document.getElementById('z_year3').innerText = String(new Date().getFullYear())[2]; |
|
document.getElementById('z_year4').innerText = String(new Date().getFullYear())[3]; |
|
|
|
//月 |
|
let month = String(new Date().getMonth() + 1) |
|
if (month.length < 2) { |
|
month = '0' + month; |
|
} |
|
document.getElementById('z_month1').innerText = month[0]; |
|
document.getElementById('z_month2').innerText = month[1]; |
|
|
|
// 日 |
|
let day = String(new Date().getDate()) |
|
if (day.length < 2) { |
|
day = '0' + day; |
|
} |
|
document.getElementById('z_day1').innerText = day[0]; |
|
document.getElementById('z_day2').innerText = day[1]; |
|
</script> |
|
</body> |
|
|
|
<style> |
|
.dateCard { |
|
display: flex; |
|
align-items: center; |
|
font-size: 22px; |
|
} |
|
|
|
.dateCard li { |
|
background: #004ebd; |
|
color: #fff; |
|
margin-right: 2px; |
|
width: 28px; |
|
height: 28px; |
|
text-align: center; |
|
font-weight: bold; |
|
} |
|
.dateCard div { |
|
font-size:16px; |
|
margin-right:2px |
|
} |
|
|
|
.tableHeader { |
|
display: flex; |
|
border-top: 6px solid #004EBD; |
|
background: rgba(0, 78, 189, .06); |
|
color: #9F9F9F; |
|
font-size: 18px; |
|
align-items: center; |
|
justify-content: space-around; |
|
height: 80px; |
|
margin-top: 30px; |
|
} |
|
|
|
.tableHeader div { |
|
width: 20%; |
|
text-align: center; |
|
} |
|
|
|
.tableBody { |
|
margin-bottom: 70px; |
|
} |
|
|
|
.tableBody_item { |
|
display: flex; |
|
font-size: 22px; |
|
align-items: center; |
|
justify-content: space-around; |
|
height: 80px; |
|
} |
|
|
|
.tableBody_item div { |
|
width: 20%; |
|
text-align: center; |
|
} |
|
|
|
.tableBody_item:nth-child(even) { |
|
background: rgba(0, 78, 189, .1); |
|
} |
|
</style> |
|
|
|
</html> |