2024.10.2(週三)

记得关月亮發表於2024-10-05
<%@ 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: #ece9e9;
        }

        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: #f1ecec;
        }

        p {
            margin: 5px 0;
        }
    </style>
</head>
<body>

<h1>生產工序資訊</h1>
<form method="post" action="processProductionProcess.jsp">
    <label for="process_id">工序 ID</label>
    <input type="text" id="process_id" name="process_id" required>

    <label for="process_name">工序名稱</label>
    <input type="text" id="process_name" name="process_name" required>

    <label for="team_id">所屬班組 ID</label>
    <input type="text" id="team_id" name="team_id" required>

    <label for="sequence_number">工序順序號</label>
    <input type="number" id="sequence_number" name="sequence_number" value="0" required>

    <label for="standard_time">標準工時</label>
    <input type="number" id="standard_time" name="standard_time" value="0" required>

    <label for="remarks">備註</label>
    <input type="text" id="remarks" name="remarks">

    <button type="submit">提交</button>
</form>

<%-- 結果展示部分 --%>
<%
    String processId = request.getParameter("process_id");
    String processName = request.getParameter("process_name");
    String teamId = request.getParameter("team_id");
    String sequenceNumber = request.getParameter("sequence_number");
    String standardTime = request.getParameter("standard_time");
    String remarks = request.getParameter("remarks");

    if (processId != null) {
%>
<div class="result-section">
    <h2>輸入結果</h2>
    <p><strong>工序 ID:</strong> <%= processId %></p>
    <p><strong>工序名稱:</strong> <%= processName %></p>
    <p><strong>所屬班組 ID:</strong> <%= teamId %></p>
    <p><strong>工序順序號:</strong> <%= sequenceNumber %></p>
    <p><strong>標準工時:</strong> <%= standardTime %></p>
    <p><strong>備註:</strong> <%= remarks != null ? remarks : "無" %></p>
</div>
<%
    }
%>

</body>
</html>