superivseList-check.jsp 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <%@ page language="java" import="java.util.*" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
  2. <%@include file="/context/mytags.jsp"%>
  3. <!DOCTYPE html>
  4. <html>
  5. <head>
  6. <title></title>
  7. <t:base type="jquery,easyui,tools,DatePicker"></t:base>
  8. <link rel="stylesheet" href="plug-in/uploadify/css/uploadify.css" type="text/css" />
  9. <script type="text/javascript" src="plug-in/uploadify/jquery.uploadify-3.1.js"></script>
  10. <script src="plug-in/layer/layer.js"></script>
  11. <script>
  12. </script>
  13. <script type="text/javascript">
  14. //编写自定义JS代码
  15. </script>
  16. </head>
  17. <body style="overflow-x: hidden;">
  18. <table style="width: 600px;" cellpadding="0" cellspacing="1" class="formtable">
  19. <c:if test="${not empty noRecord}">
  20. <p>${noRecord}</p>
  21. </c:if>
  22. <%-- <p>${noRecord}</p>--%>
  23. <c:forEach items="${list}" var="item">
  24. <tr>
  25. <td align="right">
  26. <label class="Validform_label">
  27. 整改时间:
  28. </label>
  29. </td>
  30. <td class="value">
  31. <input type="text" style="width: 150px;border: none;" value="${item.dealDate}" disabled/>
  32. </td>
  33. </tr>
  34. <tr>
  35. <td align="right">
  36. <label class="Validform_label">
  37. 附件照片:
  38. </label>
  39. </td>
  40. <td class="value">
  41. <img src="${item.imgUrl}"></img>
  42. </td>
  43. </tr>
  44. <tr>
  45. <td>
  46. <div>&nbsp;</div>
  47. </td>
  48. </tr>
  49. </c:forEach>
  50. </table>
  51. </body>
  52. <script type="text/javascript">
  53. </script>
  54. <style>
  55. img{
  56. max-width: 400px;
  57. max-height: 400px;
  58. }
  59. </style>