compare_modal.ejs 1.5 KB

12345678910111213141516171819202122232425262728293031323334
  1. <div class="modal fade show" id="select-final" data-backdrop="static">
  2. <div class="modal-dialog" role="document">
  3. <div class="modal-content">
  4. <div class="modal-header">
  5. <h5 class="modal-title">选择决算标段</h5>
  6. </div>
  7. <div class="modal-body" style="display: block; overflow: auto; height: 500px">
  8. <h5>可选标段</h5>
  9. <table class="table table-sm table-bordered">
  10. <thead>
  11. <tr class="text-center">
  12. <th>选择</th>
  13. <th>标段名称</th>
  14. <th>期数</th>
  15. <th>状态</th>
  16. </tr>
  17. </thead>
  18. <tbody id="valid-tender-list">
  19. </tbody>
  20. </table>
  21. </div>
  22. <div class="modal-footer">
  23. <div class="form-check form-check-inline">
  24. <input class="form-check-input" type="checkbox" id="sf-select-all">
  25. <label class="form-check-label" for="sr-select-all">全选</label>
  26. </div>
  27. <div>
  28. <button type="button" class="btn btn-sm btn-secondary" data-dismiss="modal">取消</button>
  29. <button type="button" class="btn btn-sm btn-primary" id="select-final-ok">确定</button>
  30. </div>
  31. </div>
  32. </div>
  33. </div>
  34. </div>