| 123456789101112131415161718192021222324252627282930313233343536 |
- <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>失效日期</th>
- <th>入库日期</th>
- <th>属性仓</th>
- <th>批号</th>
- <th>质量</th>
- <th></th>
- </tr>
- <tr v-for="(lot,index) in lots">
- <td>@{{ lot.customerid }}</td>
- <td>@{{ lot.lotatt01 }}</td>
- <td>@{{ lot.lotatt02 }}</td>
- <td>@{{ lot.lotatt03 }}</td>
- <td>@{{ lot.lotatt04 }}</td>
- <td>@{{ lot.lotatt05 }}</td>
- <td>@{{ lot.lotatt08 }}</td>
- <td>
- <button class="btn btn-sm btn-primary" @click="selectedLot(index)">选定</button>
- </td>
- </tr>
- </table>
- </div>
- </div>
- </div>
- </div>
|