|
@@ -11,6 +11,24 @@
|
|
#div1{
|
|
#div1{
|
|
margin-top: 10px;
|
|
margin-top: 10px;
|
|
}
|
|
}
|
|
|
|
+ .well-class-body{
|
|
|
|
+ width: 160px;
|
|
|
|
+ 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>
|
|
</style>
|
|
</head>
|
|
</head>
|
|
<body>
|
|
<body>
|
|
@@ -22,42 +40,54 @@
|
|
<div class="panel-body">
|
|
<div class="panel-body">
|
|
<div>
|
|
<div>
|
|
<ul class="nav nav-tabs">
|
|
<ul class="nav nav-tabs">
|
|
- <li role="presentation"><a id="dq" href="javascript:void(0)">填写需要材料</a></li>
|
|
|
|
- <li role="presentation"><a id="qd" href="javascript:void(0)">查看领料清单</a></li>
|
|
|
|
|
|
+ <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="click2" ><a id="qd" href="javascript:void(0)">查看领料清单</a></li>
|
|
</ul>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<!-- 表格 -->
|
|
<!-- 表格 -->
|
|
<div id="div1">
|
|
<div id="div1">
|
|
<table class="table table-view">
|
|
<table class="table table-view">
|
|
- <thead>
|
|
|
|
|
|
+ <tbody>
|
|
<c:forEach items="#{pickListList}" var="items" varStatus="status">
|
|
<c:forEach items="#{pickListList}" var="items" varStatus="status">
|
|
<c:if test="${status.count eq 1 || (status.count-1) % 1 eq 0}">
|
|
<c:if test="${status.count eq 1 || (status.count-1) % 1 eq 0}">
|
|
<tr>
|
|
<tr>
|
|
</c:if>
|
|
</c:if>
|
|
- <td colspan="4">${items.name}</td>
|
|
|
|
|
|
+ <td colspan="4" class="list-lig-one">${items.name}</td>
|
|
<c:if test="${status.count % 1 eq 0 || status.count eq 5}">
|
|
<c:if test="${status.count % 1 eq 0 || status.count eq 5}">
|
|
</tr>
|
|
</tr>
|
|
</c:if>
|
|
</c:if>
|
|
|
|
+
|
|
<c:forEach items="#{items.mdTheClassList}" var="items" varStatus="status">
|
|
<c:forEach items="#{items.mdTheClassList}" var="items" varStatus="status">
|
|
<c:if test="${status.count eq 1 || (status.count-1) % 1 eq 0}">
|
|
<c:if test="${status.count eq 1 || (status.count-1) % 1 eq 0}">
|
|
<tr>
|
|
<tr>
|
|
</c:if>
|
|
</c:if>
|
|
- <td colspan="4"><a href="${items.id}">${items.name}</a></td>
|
|
|
|
|
|
+ <td colspan="4" class="list-lig-two">${items.name}</td>
|
|
<c:if test="${status.count % 1 eq 0 || status.count eq 5}">
|
|
<c:if test="${status.count % 1 eq 0 || status.count eq 5}">
|
|
</tr>
|
|
</tr>
|
|
</c:if>
|
|
</c:if>
|
|
|
|
+
|
|
<c:forEach items="${items.mdSmallClassList}" var="itemss" varStatus="status">
|
|
<c:forEach items="${items.mdSmallClassList}" var="itemss" varStatus="status">
|
|
<c:if test="${status.count eq 1 || (status.count-1) % 4 eq 0}">
|
|
<c:if test="${status.count eq 1 || (status.count-1) % 4 eq 0}">
|
|
<tr>
|
|
<tr>
|
|
</c:if>
|
|
</c:if>
|
|
- <td>${itemss.name}: <input placeholder="0" type="number" min="0" name="need" id="${itemss.id}"/> ${itemss.mdUnit}</td>
|
|
|
|
|
|
+ <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;">
|
|
|
|
+ <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}">
|
|
<c:if test="${status.count % 4 eq 0 || status.count eq 4}">
|
|
</tr>
|
|
</tr>
|
|
</c:if>
|
|
</c:if>
|
|
</c:forEach>
|
|
</c:forEach>
|
|
|
|
+
|
|
</c:forEach>
|
|
</c:forEach>
|
|
</c:forEach>
|
|
</c:forEach>
|
|
- </thead>
|
|
|
|
|
|
+ </tbody>
|
|
</table>
|
|
</table>
|
|
<div class="row">
|
|
<div class="row">
|
|
<div class="col-sm-3"></div>
|
|
<div class="col-sm-3"></div>
|