_commodities.blade.php 1.2 KB

12345678910111213141516171819202122232425262728
  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>SKU</th>
  14. <th></th>
  15. </tr>
  16. <tr v-for="(commodity,index) in commodities">
  17. <td>@{{ commodity.owner ? commodity.owner.name : '未知' }}</td>
  18. <td>@{{ commodity.name }}</td>
  19. <td>@{{ commodity.sku }}</td>
  20. <td>
  21. <button class="btn btn-sm btn-primary" @click="selectedCommodity(index)">选定</button>
  22. </td>
  23. </tr>
  24. </table>
  25. </div>
  26. </div>
  27. </div>
  28. </div>