This commit is contained in:
2025-07-21 14:34:38 +08:00
parent 6b7d7ab1c0
commit 41c79bfb08
6 changed files with 168 additions and 6 deletions

View File

@@ -34,24 +34,24 @@
<table>
<thead>
<tr>
<th>库位</th>
<th>物料名称</th>
<th>数量</th>
<th>物料规格</th>
<th>单位</th>
<th>物料编码</th>
<th>批次号</th>
<th>库位</th>
<th>单位</th>
</tr>
</thead>
<tbody>
<tr v-for="(e, i) in dataList" :key="i" @tap="toChek(e)" :class="{'checked': pkId === e.group_id}">
<td>{{e.struct_code}}</td>
<td>{{e.material_name}}</td>
<td>{{e.qty}}</td>
<td>{{e.material_spec}}</td>
<td>{{e.qty_unit_name}}</td>
<td>{{e.material_code}}</td>
<td>{{e.pcsn}}</td>
<td>{{e.struct_code}}</td>
<td>{{e.qty_unit_name}}</td>
</tr>
</tbody>
</table>
@@ -168,6 +168,9 @@
}
},
toChek (e) {
if (e.material_code === 'KH001') {
return
}
this.pkId = this.pkId === e.group_id ? '' : e.group_id
this.pkObj = this.pkId === e.group_id ? e : {}
},