Browse Source

fix(dashboard): 修复物料接收看板数据绑定错误

- 将包装列表数据源更正为接收列表数据源
master
常熟吴彦祖 1 month ago
parent
commit
4bed537172
  1. 2
      src/views/modules/dashboard/material-receiving-board.vue

2
src/views/modules/dashboard/material-receiving-board.vue

@ -86,7 +86,7 @@
</tr>
</thead>
<tbody>
<tr v-for="(item, idx) in packagingList" :key="idx">
<tr v-for="(item, idx) in receivingList" :key="idx">
<td class="text-center">{{ idx + 1 }}</td>
<td class="text-center">{{ item.storageLocation }}</td>
<td class="text-center">{{ item.palletCode }}</td>

Loading…
Cancel
Save