@@ -1946,5 +1946,6 @@ function checkAuditorFrom () {
toastr.error('请先选择审批人,再上报数据');
return false;
}
+ $('#hide-all').show();
@@ -144,4 +144,5 @@ function checkAuditorFrom () {
toast('请先选择审批人,再上报数据', 'error', 'exclamation-circle');
@@ -148,4 +148,5 @@ function checkAuditorFrom () {
toast.error('请先选择审批人,再上报数据');
@@ -37,6 +37,9 @@
<i class="icon fa"></i>
<span class="message"></span>
</div>
+<!-- 遮罩层 -->
+<div id="hide-all" style="display:none;position: absolute;width: 100%;height: 100%;top:0;left: 0;z-index:10000000">
+</div>
<%- modal %>
<script type="text/javascript">
toastr.options = {
@@ -20,6 +20,7 @@
</thead>
<tbody id="materialBills">
<% for (const [index,m] of materialBillsData.entries()) { %>
+ <% if (m.code !== null && m.code !== '') { %>
<tr class="table-secondary">
<td><%= index+1 %></td>
<td><input type="checkbox" checked disabled value="<%= m.id %>"></td>
@@ -29,6 +30,7 @@
<td><%= m.spec %></td>
</tr>
<% } %>
+ <% } %>
</tbody>
</table>
@@ -481,5 +481,6 @@
-</script>
+</script>