12345678910111213141516171819202122232425262728293031323334 |
- <div class="modal fade show" id="select-final" data-backdrop="static">
- <div class="modal-dialog" role="document">
- <div class="modal-content">
- <div class="modal-header">
- <h5 class="modal-title">选择决算标段</h5>
- </div>
- <div class="modal-body" style="display: block; overflow: auto; height: 500px">
- <h5>可选标段</h5>
- <table class="table table-sm table-bordered">
- <thead>
- <tr class="text-center">
- <th>选择</th>
- <th>标段名称</th>
- <th>期数</th>
- <th>状态</th>
- </tr>
- </thead>
- <tbody id="valid-tender-list">
- </tbody>
- </table>
- </div>
- <div class="modal-footer">
- <div class="form-check form-check-inline">
- <input class="form-check-input" type="checkbox" id="sf-select-all">
- <label class="form-check-label" for="sr-select-all">全选</label>
- </div>
- <div>
- <button type="button" class="btn btn-sm btn-secondary" data-dismiss="modal">取消</button>
- <button type="button" class="btn btn-sm btn-primary" id="select-final-ok">确定</button>
- </div>
- </div>
- </div>
- </div>
- </div>
|