首页 > 其他分享 >2024.9.30(周一)

2024.9.30(周一)

时间:2024-10-05 09:50:52浏览次数:9  
标签:5px color 2024.9 border 30 批次 background 周一 margin

<%@ 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: #e0d8d8;
        }

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

<h1>产品批次</h1>
<form method="post" action="processProductBatch.jsp">
    <label for="batch_id">批次 ID</label>
    <input type="text" id="batch_id" name="batch_id" required>

    <label for="batch_number">批次号</label>
    <input type="text" id="batch_number" name="batch_number" required>

    <label for="order_id">生产制令编号</label>
    <input type="text" id="order_id" name="order_id" required>

    <label for="product_id">产品 ID</label>
    <input type="text" id="product_id" name="product_id" required>

    <label for="production_date">生产日期</label>
    <input type="text" id="production_date" name="production_date" required>

    <label for="quantity">批次数量</label>
    <input type="number" id="quantity" name="quantity" value="0" required>

    <label for="quality_status">质量状态</label>
    <select id="quality_status" name="quality_status">
        <option value="合格">合格</option>
        <option value="不合格">不合格</option>
    </select>

    <label for="remarks">备注信息</label>
    <input type="text" id="remarks" name="remarks">

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

<%-- 结果展示部分 --%>
<%
    String batchId = request.getParameter("batch_id");
    String batchNumber = request.getParameter("batch_number");
    String orderId = request.getParameter("order_id");
    String productId = request.getParameter("product_id");
    String productionDate = request.getParameter("production_date");
    String quantity = request.getParameter("quantity");
    String qualityStatus = request.getParameter("quality_status");
    String remarks = request.getParameter("remarks");

    if (batchId != null) {
%>
<div class="result-section">
    <h2>输入结果</h2>
    <p><strong>批次 ID:</strong> <%= batchId %></p>
    <p><strong>批次号:</strong> <%= batchNumber %></p>
    <p><strong>生产制令编号:</strong> <%= orderId %></p>
    <p><strong>产品 ID:</strong> <%= productId %></p>
    <p><strong>生产日期:</strong> <%= productionDate %></p>
    <p><strong>批次数量:</strong> <%= quantity %></p>
    <p><strong>质量状态:</strong> <%= qualityStatus %></p>
    <p><strong>备注信息:</strong> <%= remarks != null ? remarks : "无" %></p>
</div>
<%
    }
%>

</body>
</html>

 

标签:5px,color,2024.9,border,30,批次,background,周一,margin
From: https://www.cnblogs.com/Sunyiran/p/18447635

相关文章

  • 30. 协程
    1.协程的概念1.1定义进程是操作系统内部运行的程序线程是进程内部运行的程序协程是线程内部运行的程序协程是单线程下的并发,又成微线程,英文名coroutine1.2协程的优点 协程切换的开销更小GIL锁导致同一时刻只能运行一个线程,一个线程内不会限制协程数,单线程就可以实现并......
  • 2024初秋集训——提高组 #30
    B.硬币问题题目描述有\(N\)种硬币,每种都有无限个。求\([1,m]\)中有多少种面额是不能被凑出来的。思路我们可以先求出不使用\(w_1\)凑出来的数,由于之后可以再添加若干个\(w_1\)。所以对于\(\bmodw_1\)同余的数只需看较小的数。这明显就是一个最短路。对于每种余数求......
  • 测试H7-TOOL的CANFD助手J1939批量数据传输连续运行30个小时稳定不丢包
    根据客户需求做的一个不断电连续运行测试。测试条件1、H7-TOOL的CAN/CANFD助手控制一个节点设备2、使用J1939协议3、经典CAN方式,波特率250KbpsJ1939测试命令,250ms一次发送接收测试昨天下午三点到今晚9点半,共计30个小时不断电连续测试,实时记录的文件:现在还在持续运行的......
  • 2024.9.20
    周一smkThe2024ICPCAsiaECRegionalsOnlineContest(II)补题AFG逆元fzb补题xmq忘了()周二smkThe2024ICPCAsiaECRegionalsOnlineContest(II)补题IJfzbThe2ndUniversalCup.Stage1:Qingdao补题xmq最小生成树模拟周三smkThe202......
  • 2024.9.24 模拟赛 CSP4
    模拟赛暴力场。出题人学政治的?T1商品值域线段树直接看值域上,每两个相邻的点的差提供的贡献,相当于值域上某一区间每一个位置都有\(1\)的贡献再减一。所以直接值域线段树,查询区间和。贪心发现左右端点一定挂在某个点上时最优。注意左右端点挂住的情况分别跑一遍。边界处理......
  • 2024/09/30 模拟赛总结
    \(0+0+42+40\),T1在写正解的时候突然比赛还有1分钟结束,然后把freopen注释的暴力在最后几秒交了上去#A.博弈唐氏xor-hashing,首先博弈游戏很简单,如果有一个数的出现次数是奇数则先手必胜,否则先手必败那么先手必败的条件就是路径上所有边权都是两两配对的,即异或和为\(0\)。那......
  • [20240930]关于共享池-表对象在库缓存探究2.txt
    [20240930]关于共享池-表对象在库缓存探究2.txt--//以前探究过sql语句在共享池存在父子游标,父游标存在堆0,子游标堆0,堆6,通过各种指针链接起来,--//父游标的堆0上保存了所有子游标的列表和各个子游标的句柄指针,子游标的堆6中保存了解析过的执行计划等解析信息。--//前几天测试表对象......
  • COMP3230 Principles of Operating Systems
    COMP3230PrinciplesofOperatingSystemsProgrammingAssignmentOneDuedate:Oct.17,2024,at23:59Total13points–ReleaseCandidateVersion2ProgrammingExercise–ImplementaLLMChatbotInterfaceObjectivesAnassessmenttaskrelatedto......
  • CSP2024-30
    A题意:将一个圆等分为\(K\)分,给出其中\(n\)个等分点的编号,\(x_i<x_{i+1}\)。有向边\(i\toj\)存在,当且仅当\(j\)是距离\(i\)最大的点(不唯一),且与图中其他边无交点(端点不算)。求图中最多有多少条边。\(3\leK\le10^9,3\len\le\min(K,10^5)\)。引理:不存在......
  • 跨过坦克300,捷途旅行者成市场新贵
    在坦克300稳坐燃油“方盒子”SUV王座的日子里,消费者们对于这款车型的热衷可谓是如痴如醉,纷纷选择预定,翘首以盼提车之日的到来。然而,市场的风云变幻莫测,捷途旅行者的横空出世,犹如一匹黑马,打破了原有的市场格局。捷途旅行者上市后,其强劲的市场表现让坦克300的市场份额受到了......