<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <!DOCTYPE html> <html> <head> <title>质量检验信息</title> <style> /* 整体页面布局和样式 */ body { font-family: Arial, sans-serif; background-color: #f4f4f4; background-image: url('img.jpg'); /* 添加背景图片 */ background-size: cover; /* 使背景图片覆盖整个页面 */ background-position: center; /* 背景图片居中 */ background-repeat: no-repeat; /* 不重复背景图片 */ } h1 { text-align: center; color: #eeeaea; } form { background-color: #fff; padding: 20px; border-radius: 5px; box-shadow: 0 0 5px rgba(0, 0, 0, 0.1); width: 400px; margin: 0 auto; } label { display: block; margin-bottom: 5px; font-weight: bold; } input[type="text"], input[type="number"], select { width: 100%; padding: 8px; margin-bottom: 15px; border: 1px solid #ccc; border-radius: 3px; } button { background-color: #007BFF; color: #fff; padding: 10px 15px; border: none; border-radius: 3px; cursor: pointer; display: block; /* Ensures button is a block element */ margin: 0 auto; /* Centers the button */ } button:hover { background-color: #0056b3; } /* 结果展示区域样式 */ .result-section { margin-top: 20px; background-color: #fff; padding: 20px; border-radius: 5px; box-shadow: 0 0 5px rgba(0, 0, 0, 0.1); width: 400px; margin: 0 auto; } h2 { color: #f8f6f6; } p { margin: 5px 0; } </style> </head> <body> <h1>质量检验信息</h1> <form method="post" action="processQualityInspection.jsp"> <label for="inspection_id">检验 ID</label> <input type="text" id="inspection_id" name="inspection_id" required> <label for="batch_id">产品批次 ID</label> <input type="text" id="batch_id" name="batch_id" required> <label for="inspection_date">检验日期</label> <input type="text" id="inspection_date" name="inspection_date" required> <label for="inspector_id">检验员 ID</label> <input type="text" id="inspector_id" name="inspector_id" required> <label for="defect_type">缺陷类型</label> <input type="text" id="defect_type" name="defect_type"> <label for="defect_description">缺陷描述</label> <input type="text" id="defect_description" name="defect_description"> <label for="judgment_result">检验判定结果</label> <select id="judgment_result" name="judgment_result"> <option value="合格">合格</option> <option value="不合格">不合格</option> </select> <label for="remarks">备注</label> <input type="text" id="remarks" name="remarks"> <button type="submit">提交</button> </form> <%-- 结果展示部分 --%> <% String inspectionId = request.getParameter("inspection_id"); String batchId = request.getParameter("batch_id"); String inspectionDate = request.getParameter("inspection_date"); String inspectorId = request.getParameter("inspector_id"); String defectType = request.getParameter("defect_type"); String defectDescription = request.getParameter("defect_description"); String judgmentResult = request.getParameter("judgment_result"); String remarks = request.getParameter("remarks"); if (inspectionId != null) { %> <div class="result-section"> <h2>输入结果</h2> <p><strong>检验 ID:</strong> <%= inspectionId %></p> <p><strong>产品批次 ID:</strong> <%= batchId %></p> <p><strong>检验日期:</strong> <%= inspectionDate %></p> <p><strong>检验员 ID:</strong> <%= inspectorId %></p> <p><strong>缺陷类型:</strong> <%= defectType != null ? defectType : "无" %></p> <p><strong>缺陷描述:</strong> <%= defectDescription != null ? defectDescription : "无" %></p> <p><strong>检验判定结果:</strong> <%= judgmentResult %></p> <p><strong>备注:</strong> <%= remarks != null ? remarks : "无" %></p> </div> <% } %> </body> </html>
标签:周四,2024.10,background,color,border,5px,margin,ID From: https://www.cnblogs.com/Sunyiran/p/18447642