Browse Source

资金多选框

ellisran 7 months ago
parent
commit
d25b82b106
1 changed files with 3 additions and 3 deletions
  1. 3 3
      app/view/financial/transfer_tender_modal.ejs

+ 3 - 3
app/view/financial/transfer_tender_modal.ejs

@@ -48,7 +48,7 @@
                 <table class="table table-bordered">
                     <thead class="text-center">
                     <tr>
-                        <th width="50px">选择</th>
+                        <th width="40px">选择</th>
                         <th width="">标段名称</th>
                         <th width="150px">选择期数</th>
                     </tr>
@@ -59,9 +59,9 @@
                         <td><input type="checkbox" value="<%- t.id %>"></td>
                         <td class="text-left"><%- t.name %></td>
                         <td>
-                            <select class="form-control form-control-sm selectpicker" title="选择期" multiple>
+                            <select class="form-control form-control-sm selectpicker" title="选择期" data-width="150px" multiple>
                                 <% for (const s of t.stages) { %>
-                                <option value="<%- s.order %>">第<%- s.order %>期</option>
+                                    <option value="<%- s.order %>">第<%- s.order %>期</option>
                                 <% } %>
                             </select>
                         </td>