1234567891011121314151617181920212223242526 |
- <!--选择比较期-->
- <div class="modal fade" id="select-qi" 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 scroll-y" style="height: 600px">
- <table class="table table-sm" >
- <tr><th>期</th><th>计量年月</th><th width="60">选择</th></tr>
- <% for (const s of stages) { %>
- <tr stage-id="<%- s.id %>"><td><%- s.order %>期</td><td><%- s.s_time %></td><td><input type="checkbox"></td></tr>
- <% } %>
- </table>
- </div>
- <div class="modal-footer">
- <div class="form-check form-check-inline">
- <input class="form-check-input" type="checkbox" id="select-qi-all">
- <label class="form-check-label" for="select-qi-all">全选</label>
- </div>
- <button type="button" class="btn btn-secondary btn-sm" data-dismiss="modal">关闭</button>
- <button type="button" class="btn btn-primary btn-sm" id="select-qi-ok">确认</button>
- </div>
- </div>
- </div>
- </div>
|