This commit is contained in:
2025-08-22 14:23:40 +08:00
parent 4729585448
commit 77133c2c4c
4 changed files with 14 additions and 10 deletions

View File

@@ -39,8 +39,8 @@
<th @tap="toAllCheck"><uni-icons :type="allCheck ? 'checkbox' : 'circle'" size="24" color="#4e6ef2"></uni-icons></th>
<th>状态</th>
<th>点位</th>
<th>物料编码</th>
<th>物料名称</th>
<th>批次</th>
<th>数量</th>
<th>单位</th>
<th>卷号</th>
@@ -51,8 +51,8 @@
<td @tap="toCheck(e)"><uni-icons :type="e.checked ? 'checkbox' : 'circle'" size="24" color="#4e6ef2"></uni-icons></td>
<td>{{e.point_status}}</td>
<td>{{e.point_code}}</td>
<td>{{e.material_code}}</td>
<td>{{e.material_name}}</td>
<td>{{e.pcsn}}</td>
<td>{{e.qty}}</td>
<td>{{e.measure_unit_id}}</td>
<td>{{e.containers.join(',')}}</td>

View File

@@ -43,8 +43,8 @@
<tr>
<th>序号</th>
<th>卷号</th>
<th>物料编码</th>
<th>物料名称</th>
<th>批次</th>
<th>数量</th>
<th>单位</th>
</tr>
@@ -53,8 +53,8 @@
<tr v-for="(e, i) in dataList" :key="i" :class="{'checked': e.mid === pkId}">
<td @tap="toCheck(e)">{{i+1}}</td>
<td><input type="text" class="sin_input" v-model="e.container_code"></td>
<td @tap="toJump(e)">{{e.material_name}}</td>
<td><input type="text" class="sin_input" v-model="e.pscn"></td>
<td @tap="toJump(e)">{{e.material_code}}</td>
<td>{{e.material_name}}</td>
<td><input type="number" class="sin_input" v-model="e.qty" @blur="handleBlur(e)"></td>
<td>{{e.measure_unit_id}}</td>
</tr>

View File

@@ -20,17 +20,21 @@
<table>
<thead>
<tr>
<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">
<td>{{i+1}}</td>
<td>{{e.container_code}}</td>
<td>{{e.material_code}}</td>
<td>{{e.material_name}}</td>
<td>{{e.pscn}}</td>
<td>{{e.qty}}</td>
<td>{{e.measure_unit_id}}</td>
</tr>
</tbody>

View File

@@ -35,8 +35,8 @@
<tr>
<th>序号</th>
<th>卷号</th>
<th>物料编码</th>
<th>物料名称</th>
<th>批次</th>
<th>数量</th>
<th>单位</th>
</tr>
@@ -45,8 +45,8 @@
<tr v-for="(e, i) in dataList" :key="i" :class="{'checked': e.mid === pkId}">
<td @tap="toCheck(e)">{{i+1}}</td>
<td><input type="text" class="sin_input" v-model="e.container_code"></td>
<td @tap="toJump(e)">{{e.material_name}}</td>
<td><input type="text" class="sin_input" v-model="e.pscn"></td>
<td @tap="toJump(e)">{{e.material_code}}</td>
<td>{{e.material_name}}</td>
<td><input type="number" class="sin_input" v-model="e.qty" @blur="handleBlur(e)"></td>
<td>{{e.measure_unit_id}}</td>
</tr>