115 lines
2.6 KiB
HTML
115 lines
2.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>工资单</title>
|
|
<style>
|
|
body {
|
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
min-height: 100vh;
|
|
margin: 0;
|
|
}
|
|
|
|
.payroll-container {
|
|
background: white;
|
|
border-radius: 15px;
|
|
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
|
|
padding: 30px;
|
|
width: 90%;
|
|
max-width: 500px;
|
|
animation: fadeIn 0.6s ease;
|
|
}
|
|
|
|
@keyframes fadeIn {
|
|
from {
|
|
opacity: 0;
|
|
transform: translateY(-20px);
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
}
|
|
|
|
h1 {
|
|
text-align: center;
|
|
color: #00838f;
|
|
font-size: 28px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.section {
|
|
background: #f9f9f9;
|
|
border-radius: 10px;
|
|
padding: 20px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
h2 {
|
|
color: #006064;
|
|
font-size: 20px;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.info-row {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
padding: 10px 0;
|
|
border-bottom: 1px solid #eee;
|
|
}
|
|
|
|
.info-row:last-child {
|
|
border-bottom: none;
|
|
}
|
|
|
|
.info-label {
|
|
font-weight: 600;
|
|
color: #333;
|
|
}
|
|
|
|
.info-value {
|
|
color: #555;
|
|
}
|
|
|
|
.total-row {
|
|
font-weight: bold;
|
|
font-size: 1.2em;
|
|
color: #00838f;
|
|
border-top: 2px solid #00838f;
|
|
padding-top: 15px;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="payroll-container">
|
|
<h1>{{.title}}</h1>
|
|
|
|
{{range $i, $data := .datas}}
|
|
<div class="section">
|
|
<h2>{{.Name}}</h2>
|
|
|
|
{{range $j, $v := .Line}}
|
|
<div class="info-row">
|
|
<span class="info-label">{{ $v.Label }}</span>
|
|
<span class="info-value">{{ $v.Value }}</span>
|
|
</div>
|
|
{{end}}
|
|
</div>
|
|
{{end}}
|
|
|
|
|
|
<div class="info-row total-row">
|
|
<span class="info-label">实发工资</span>
|
|
<span class="info-value">{{ .salary }}</span>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
</html> |