严智鑫
2025-11-13 945bc394f40d8af1072a53da9a94f24207124e6d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<%@ page language="java" contentType="text/html; charset=utf-8"
    pageEncoding="utf-8"%>
    
 <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>    
    <c:set var="ctx" value="${pageContext.request.contextPath}"/>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>领取任务</title>
<link href="${ctx}/static/bootstrap/2.3.2/css/bootstrap.min.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="${ctx}/static/jquery/jquery-3.1.0.min.js"></script>
</head>
<body style="background-image: url('../static/images/21.jpg');">
 
<table>
    <tr>
        <td>
            <font size="5px" color="red;">Attention:</font>
        </td>
        <td>
            您暂时无法领取下个任务,因为此产线上仍有待切割任务<font color="red">未完成!</font>
        </td>
    </tr>
    <tr>
        <td></td>
        <td>
            请到任务列表中完成所有的任务后在<font color="red">任务界面</font>点击结束任务后,重新进入此页面领取任务!
        </td>
    </tr>
</table>
<br/><br/><br/>
<h1 align="center" style="color: green">切割列表</h1>
    <table class="table table-striped table-hover">
         <thead>
             <tr>
               <th width="300px" height="80px" align="left">ID</th>
               <th width="300px" height="80px" align="left">文件名</th>
               <th width="300px" height="80px" align="left">组别</th>
               <th width="300px" height="80px" align="left">状态</th>
             </tr>
         </thead>
               <tbody>
                <c:forEach items="${rawPackageTxts}" var="rawPackageTxts" varStatus="status1">
                <!-- varStatus用来存放到当前循环的变量信息 ,此处没有卵用-->
                   <tr>
                       <td height="30px">${rawPackageTxts.id}</td>
                       <td height="30px">${rawPackageTxts.txt_name}</td>
                       <td height="30px">${rawPackageTxts.groups}</td>
                       <td height="30px">${rawPackageTxts.status}</td>
                    </tr>
               </c:forEach>
         </tbody>
   </table>
 
</body>
</html>