| 12345678910111213141516171819202122232425262728 |
- <div class="modal fade" tabindex="-1" role="dialog" id="commodities">
- <div class="modal-dialog modal-lg modal-dialog-centered modal-dialog-scrollable">
- <div class="modal-content">
- <div class="modal-header">
- <div class="font-weight-bold h4">多商品选择</div>
- <button type="button" class="close" data-dismiss="modal">×</button>
- </div>
- <div class="modal-body">
- <table class="w-100 h-100 table table-bordered table-striped">
- <tr>
- <th>货主</th>
- <th>名称</th>
- <th>SKU</th>
- <th></th>
- </tr>
- <tr v-for="(commodity,index) in commodities">
- <td>@{{ commodity.owner ? commodity.owner.name : '未知' }}</td>
- <td>@{{ commodity.name }}</td>
- <td>@{{ commodity.sku }}</td>
- <td>
- <button class="btn btn-sm btn-primary" @click="selectedCommodity(index)">选定</button>
- </td>
- </tr>
- </table>
- </div>
- </div>
- </div>
- </div>
|