123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- <%@ page contentType="text/html;charset=UTF-8" %>
- <%@ include file="/webpage/include/taglib.jsp"%>
- <html>
- <head>
- <title>项目管理列表页</title>
- <meta http-equiv="Content-type" content="text/html; charset=utf-8">
- <meta name="decorator" content="ani"/>
- <%@ include file="/webpage/include/bootstraptable.jsp"%>
- <%@include file="pickIng.js" %>
- <style type="text/css">
- #div1{
- margin-top: 10px;
- }
- .well-class-body{
- width: 150px;
- word-wrap: break-word;
- word-break: break-all;
- /*text-align: right;*/
- margin: 2px;
- }
- .list-lig-one{
- color: #0C0C0C;
- /*text-align: center;*/
- font-size: 17px;
- background-color: whitesmoke;
- }
- .list-lig-two{
- /*background-color: #6495ED;*/
- color: #333333;
- font-size: 14px;
- }
- </style>
- </head>
- <body>
- <div class="wrapper wrapper-content">
- <div class="panel panel-primary">
- <div class="panel-heading">
- <h3 class="panel-title">模块表展示</h3>
- </div>
- <div class="panel-body">
- <div>
- <ul class="nav nav-tabs">
- <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>
- <li role="presentation" id="click3" ><a id="mkqd" href="javascript:void(0)">查看模块清单</a></li>
- <li role="presentation" id="click2" ><a id="qd" href="javascript:void(0)">查看领料清单</a></li>
- </ul>
- </div>
- <!-- 表格 -->
- <div id="div1">
- <table class="table table-view">
- <tbody>
- <h3>项目:${projectNumber.requireName} 发起第${projectNumber.theNumber}次开具领料清单</h3>
- <c:forEach items="#{pickListList}" var="items" varStatus="status">
- <c:if test="${status.count eq 1 || (status.count-1) % 1 eq 0}">
- <tr>
- </c:if>
- <td colspan="4" class="list-lig-one">${items.name}</td>
- <c:if test="${status.count % 1 eq 0 || status.count eq 5}">
- </tr>
- </c:if>
- <c:forEach items="#{items.mdTheClassList}" var="items" varStatus="status">
- <c:if test="${status.count eq 1 || (status.count-1) % 1 eq 0}">
- <tr>
- </c:if>
- <td colspan="4" class="list-lig-two">${items.name}</td>
- <c:if test="${status.count % 1 eq 0 || status.count eq 5}">
- </tr>
- </c:if>
- <c:forEach items="${items.mdSmallClassList}" var="itemss" varStatus="status">
- <c:if test="${status.count eq 1 || (status.count-1) % 4 eq 0}">
- <tr>
- </c:if>
- <td style="text-align: center;vertical-align: middle">
- <div class="well-class-body" style="float: left;">
- <a href="javascript:jp.openViewDialog('模块清单','${ctx}/managementcenter/moduleacquisition/moduleListing/list?blockId=${itemss.id}', '800px', '500px');">
- ${itemss.name}
- </a>
- </div>
- <div style="float: left;margin-left: 5px;margin: auto">
- <input style="width:40px;" placeholder="0" type="number" min="0" name="need" id="${itemss.id}"/><span> ${itemss.mdUnit}</span>
- </div>
- </td>
- <c:if test="${status.count % 4 eq 0 || status.count eq 4}">
- </tr>
- </c:if>
- </c:forEach>
- </c:forEach>
- </c:forEach>
- </tbody>
- </table>
- <div class="row">
- <div class="col-sm-3"></div>
- <div class="col-sm-6">
- <div class="form-group text-center">
- <input id="agree" class="btn btn-primary btn-lg btn-parsley" type="submit" value="确认提交" />
- </div>
- </div>
- </div>
- </div>
- <div id="div2" style="display: none">
- <table id="informationTable" data-toolbar="#toolbar" class="table"></table>
- </div>
- <div id="div3" style="display: none">
- <table id="informationTable2" data-toolbar="#toolbar" class="table"></table>
- </div>
- <c:if test="${not empty showList.id}">
- <act:flowChart procInsId="${showList.act.procInsId}"/>
- <act:histoicFlow procInsId="${showList.act.procInsId}" />
- </c:if>
- </div>
- </div>
- </div>
- </body>
- </html>
|