_lotModal.blade.php 1.6 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <div class="modal fade" tabindex="-1" role="dialog" id="commodities">
  2. <div class="modal-dialog modal-lg modal-dialog-centered modal-dialog-scrollable">
  3. <div class="modal-content">
  4. <div class="modal-header">
  5. <div class="font-weight-bold h4">多批次选择</div>
  6. <button type="button" class="close" data-dismiss="modal">&times;</button>
  7. </div>
  8. <div class="modal-body">
  9. <table class="w-100 h-100 table table-bordered table-striped">
  10. <tr>
  11. <th>货主</th>
  12. <th>生产日期</th>
  13. <th>失效日期</th>
  14. <th>入库日期</th>
  15. <th>属性仓</th>
  16. <th>批号</th>
  17. <th>质量</th>
  18. <th></th>
  19. </tr>
  20. <tr v-for="(lot,index) in lots">
  21. <td>@{{ lot.customerid }}</td>
  22. <td>@{{ lot.lotatt01 }}</td>
  23. <td>@{{ lot.lotatt02 }}</td>
  24. <td>@{{ lot.lotatt03 }}</td>
  25. <td>@{{ lot.lotatt04 }}</td>
  26. <td>@{{ lot.lotatt05 }}</td>
  27. <td>@{{ lot.lotatt08 }}</td>
  28. <td>
  29. <button class="btn btn-sm btn-primary" @click="selectedLot(index)">选定</button>
  30. </td>
  31. </tr>
  32. </table>
  33. </div>
  34. </div>
  35. </div>
  36. </div>