compare_modal.ejs 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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>
  19. <% for (const t of tenderList) { %>
  20. <tr>
  21. <td class="text-center"><input type="checkbox" name="sf-tender" tid="<%- t.id %>"><td><%- t.name %></td><td>第<%- t.lastStage.order %>期</td><td><%- auditConst.stage.statusString[t.lastStage.status] %></td>
  22. </tr>
  23. <% } %>
  24. </tbody>
  25. </table>
  26. </div>
  27. <div class="modal-footer">
  28. <div class="form-check form-check-inline">
  29. <input class="form-check-input" type="checkbox" id="sf-select-all">
  30. <label class="form-check-label" for="sr-select-all">全选</label>
  31. </div>
  32. <div>
  33. <button type="button" class="btn btn-sm btn-secondary" data-dismiss="modal">取消</button>
  34. <button type="button" class="btn btn-sm btn-primary" id="select-final-ok">确定</button>
  35. </div>
  36. </div>
  37. </div>
  38. </div>
  39. </div>