pickIng.jsp 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. <%@ page contentType="text/html;charset=UTF-8" %>
  2. <%@ include file="/webpage/include/taglib.jsp"%>
  3. <html>
  4. <head>
  5. <title>项目管理列表页</title>
  6. <meta http-equiv="Content-type" content="text/html; charset=utf-8">
  7. <meta name="decorator" content="ani"/>
  8. <%@ include file="/webpage/include/bootstraptable.jsp"%>
  9. <%@include file="pickIng.js" %>
  10. <style type="text/css">
  11. #div1{
  12. margin-top: 10px;
  13. }
  14. .well-class-body{
  15. width: 150px;
  16. word-wrap: break-word;
  17. word-break: break-all;
  18. /*text-align: right;*/
  19. margin: 2px;
  20. }
  21. .list-lig-one{
  22. color: #0C0C0C;
  23. /*text-align: center;*/
  24. font-size: 17px;
  25. background-color: whitesmoke;
  26. }
  27. .list-lig-two{
  28. /*background-color: #6495ED;*/
  29. color: #333333;
  30. font-size: 14px;
  31. }
  32. </style>
  33. </head>
  34. <body>
  35. <div class="wrapper wrapper-content">
  36. <div class="panel panel-primary">
  37. <div class="panel-heading">
  38. <h3 class="panel-title">模块表展示</h3>
  39. </div>
  40. <div class="panel-body">
  41. <div>
  42. <ul class="nav nav-tabs">
  43. <li role="presentation" id="click1" style="border-bottom: 0px;border-left: 1px solid rgb(221,221,221);border-right: 1px solid rgb(221,221,221);border-top: 1px solid rgb(221,221,221)"><a id="dq" href="javascript:void(0)">填写需要材料</a></li>
  44. <li role="presentation" id="click3" ><a id="mkqd" href="javascript:void(0)">查看模块清单</a></li>
  45. <li role="presentation" id="click2" ><a id="qd" href="javascript:void(0)">查看领料清单</a></li>
  46. </ul>
  47. </div>
  48. <!-- 表格 -->
  49. <div id="div1">
  50. <table class="table table-view">
  51. <tbody>
  52. <h3>项目:${projectNumber.requireName}&nbsp;发起第${projectNumber.theNumber}次开具领料清单</h3>
  53. <c:forEach items="#{pickListList}" var="items" varStatus="status">
  54. <c:if test="${status.count eq 1 || (status.count-1) % 1 eq 0}">
  55. <tr>
  56. </c:if>
  57. <td colspan="4" class="list-lig-one">${items.name}</td>
  58. <c:if test="${status.count % 1 eq 0 || status.count eq 5}">
  59. </tr>
  60. </c:if>
  61. <c:forEach items="#{items.mdTheClassList}" var="items" varStatus="status">
  62. <c:if test="${status.count eq 1 || (status.count-1) % 1 eq 0}">
  63. <tr>
  64. </c:if>
  65. <td colspan="4" class="list-lig-two">${items.name}</td>
  66. <c:if test="${status.count % 1 eq 0 || status.count eq 5}">
  67. </tr>
  68. </c:if>
  69. <c:forEach items="${items.mdSmallClassList}" var="itemss" varStatus="status">
  70. <c:if test="${status.count eq 1 || (status.count-1) % 4 eq 0}">
  71. <tr>
  72. </c:if>
  73. <td style="text-align: center;vertical-align: middle">
  74. <div class="well-class-body" style="float: left;">
  75. <a href="javascript:jp.openViewDialog('模块清单','${ctx}/managementcenter/moduleacquisition/moduleListing/list?blockId=${itemss.id}', '800px', '500px');">
  76. ${itemss.name}
  77. </a>
  78. </div>
  79. <div style="float: left;margin-left: 5px;margin: auto">
  80. <input style="width:40px;" placeholder="0" type="number" min="0" name="need" id="${itemss.id}"/><span>&nbsp;${itemss.mdUnit}</span>
  81. </div>
  82. </td>
  83. <c:if test="${status.count % 4 eq 0 || status.count eq 4}">
  84. </tr>
  85. </c:if>
  86. </c:forEach>
  87. </c:forEach>
  88. </c:forEach>
  89. </tbody>
  90. </table>
  91. <div class="row">
  92. <div class="col-sm-3"></div>
  93. <div class="col-sm-6">
  94. <div class="form-group text-center">
  95. <input id="agree" class="btn btn-primary btn-lg btn-parsley" type="submit" value="确认提交" />&nbsp;
  96. </div>
  97. </div>
  98. </div>
  99. </div>
  100. <div id="div2" style="display: none">
  101. <table id="informationTable" data-toolbar="#toolbar" class="table"></table>
  102. </div>
  103. <div id="div3" style="display: none">
  104. <table id="informationTable2" data-toolbar="#toolbar" class="table"></table>
  105. </div>
  106. <c:if test="${not empty showList.id}">
  107. <act:flowChart procInsId="${showList.act.procInsId}"/>
  108. <act:histoicFlow procInsId="${showList.act.procInsId}" />
  109. </c:if>
  110. </div>
  111. </div>
  112. </div>
  113. </body>
  114. </html>