This commit is contained in:
2025-08-29 16:49:30 +08:00
parent 35ed049c2d
commit aabe191f71

View File

@@ -27,10 +27,9 @@
<table>
<thead>
<tr>
<th>子卷</th>
<th>机台编</th>
<th>上下轴</th>
<th>左右卷</th>
<th>机台编号</th>
<th>分切组</th>
<th>生产顺序</th>
<th>生产日期</th>
@@ -39,14 +38,14 @@
<th>纸筒/FRP管物料编码</th>
<th>纸筒/FRP管物料描述</th>
<th>纸筒/FRP管规格</th>
<th>子卷号</th>
</tr>
</thead>
<tbody>
<tr v-for="(e, i) in dataList" :key="i" @click="toCheck(e)" :class="{'checked': e.checked}">
<td>{{e.container_name}}</td>
<td>{{e.resource_name}}</td>
<td>{{['上', '下'][Number(e.up_or_down) - 1]}}</td>
<td>{{['左', '右'][Number(e.left_or_right) - 1]}}</td>
<td>{{e.resource_name}}</td>
<td>{{e.split_group}}</td>
<td>{{e.manufacture_sort}}</td>
<td>{{e.manufacture_date}}</td>
@@ -58,6 +57,7 @@
<td v-show="e.paper_tube_or_FRP === '2'">{{e.frp_material}}</td>
<td v-show="e.paper_tube_or_FRP === '2'">{{e.frp_description}}</td>
<td v-show="e.paper_tube_or_FRP === '2'">{{e.frp_model}}</td>
<td>{{e.container_name}}</td>
</tr>
</tbody>
</table>