compare_modal.ejs 1.3 KB

1234567891011121314151617181920212223242526
  1. <!--选择比较期-->
  2. <div class="modal fade" id="select-qi" data-backdrop="static">
  3. <div class="modal-dialog" role="document">
  4. <div class="modal-content">
  5. <div class="modal-header">
  6. <h5 class="modal-title">选择参与比较的期</h5>
  7. </div>
  8. <div class="modal-body scroll-y" style="height: 600px">
  9. <table class="table table-sm" >
  10. <tr><th>期</th><th>计量年月</th><th width="60">选择</th></tr>
  11. <% for (const s of stages) { %>
  12. <tr stage-id="<%- s.id %>"><td><%- s.order %>期</td><td><%- s.s_time %></td><td><input type="checkbox"></td></tr>
  13. <% } %>
  14. </table>
  15. </div>
  16. <div class="modal-footer">
  17. <div class="form-check form-check-inline">
  18. <input class="form-check-input" type="checkbox" id="select-qi-all">
  19. <label class="form-check-label" for="select-qi-all">全选</label>
  20. </div>
  21. <button type="button" class="btn btn-secondary btn-sm" data-dismiss="modal">关闭</button>
  22. <button type="button" class="btn btn-primary btn-sm" id="select-qi-ok">确认</button>
  23. </div>
  24. </div>
  25. </div>
  26. </div>