import_material_modal.ejs 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <div class="modal fade" id="import-material" data-backdrop="static">
  2. <div class="modal-dialog modal-xl" 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">
  8. <div class="" id="im-type">
  9. <div class="form-row align-items-center mb-2">
  10. <div class="col-auto"><span class="form-check-label">导入数据:</span></div>
  11. <div class="col-auto">
  12. <div class="form-check form-check-inline">
  13. <input class="form-check-input" type="radio" id="im-type-info" value="info" type-name="信息价调差" name="im-type" checked="">
  14. <label class="form-check-label" for="im-type-info">信息价调差</label>
  15. </div>
  16. <div class="form-check form-check-inline">
  17. <input class="form-check-input" type="radio" id="im-type-index" value="index" type-name="指数法调差" name="im-type">
  18. <label class="form-check-label" for="im-type-index">指数法调差</label>
  19. </div>
  20. <div class="form-check form-check-inline">
  21. <input class="form-check-input" type="radio" id="im-type-sum" value="sum" type-name="合计" name="im-type">
  22. <label class="form-check-label" for="im-type-sum">合计</label>
  23. </div>
  24. </div>
  25. </div>
  26. <div class="form-row align-items-center mb-2">
  27. <div class="col-auto"><span class="form-check-label">数据类型:</span></div>
  28. <div class="form-check form-check-inline ml-2">
  29. <input class="form-check-input" type="checkbox" id="im-data-tax">
  30. <label class="form-check-label" for="im-data-tax">含税价</label>
  31. </div>
  32. </div>
  33. </div>
  34. <div class="modal-height-500 scroll-y">
  35. <table class="table table-sm table-bordered table-hover" style="word-break:break-all; table-layout: fixed">
  36. <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>
  37. <tr class="text-center"><th>价差费用</th><th>含税价</th><th>价差费用</th><th>含税价</th><th>价差费用</th><th>含税价</th></tr>
  38. <tbody id="import-material-list" class="list-table"></tbody>
  39. </table>
  40. </div>
  41. </div>
  42. <div class="modal-footer">
  43. <button type="button" class="btn btn-secondary btn-sm" data-dismiss="modal">取消</button>
  44. <button type="button" class="btn btn-primary btn-sm" id="import-material-ok">确定</button>
  45. </div>
  46. </div>
  47. </div>
  48. </div>