| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <div class="modal fade" id="import-material" data-backdrop="static">
- <div class="modal-dialog modal-xl" role="document">
- <div class="modal-content">
- <div class="modal-header">
- <h5 class="modal-title">导入材差数据</h5>
- </div>
- <div class="modal-body">
- <div class="" id="im-type">
- <div class="form-row align-items-center mb-2">
- <div class="col-auto"><span class="form-check-label">导入数据:</span></div>
- <div class="col-auto">
- <div class="form-check form-check-inline">
- <input class="form-check-input" type="radio" id="im-type-info" value="info" type-name="信息价调差" name="im-type" checked="">
- <label class="form-check-label" for="im-type-info">信息价调差</label>
- </div>
- <div class="form-check form-check-inline">
- <input class="form-check-input" type="radio" id="im-type-index" value="index" type-name="指数法调差" name="im-type">
- <label class="form-check-label" for="im-type-index">指数法调差</label>
- </div>
- <div class="form-check form-check-inline">
- <input class="form-check-input" type="radio" id="im-type-sum" value="sum" type-name="合计" name="im-type">
- <label class="form-check-label" for="im-type-sum">合计</label>
- </div>
- </div>
- </div>
- <div class="form-row align-items-center mb-2">
- <div class="col-auto"><span class="form-check-label">数据类型:</span></div>
- <div class="form-check form-check-inline ml-2">
- <input class="form-check-input" type="checkbox" id="im-data-tax">
- <label class="form-check-label" for="im-data-tax">含税价</label>
- </div>
- </div>
- </div>
- <div class="modal-height-500 scroll-y">
- <table class="table table-sm table-bordered table-hover" style="word-break:break-all; table-layout: fixed">
- <tr class="text-center"><th rowspan="2">选择</th><th rowspan="2">期数</th><th rowspan="2">关联计量</th><th colspan="2">信息价调差</th><th colspan="2">指数法调差</th><th colspan="2">合计</th></tr>
- <tr class="text-center"><th>价差费用</th><th>含税价</th><th>价差费用</th><th>含税价</th><th>价差费用</th><th>含税价</th></tr>
- <tbody id="import-material-list" class="list-table"></tbody>
- </table>
- </div>
- </div>
- <div class="modal-footer">
- <button type="button" class="btn btn-secondary btn-sm" data-dismiss="modal">取消</button>
- <button type="button" class="btn btn-primary btn-sm" id="import-material-ok">确定</button>
- </div>
- </div>
- </div>
- </div>
|