|
|
|
@ -34,22 +34,22 @@ |
|
|
|
<col style="width: 4%"> |
|
|
|
<col style="width: 13%"> |
|
|
|
<col style="width: 12%"> |
|
|
|
<col style="width: 12%"> |
|
|
|
<col style="width: 17%"> |
|
|
|
<col style="width: 29%"> |
|
|
|
<col style="width: 19%"> |
|
|
|
<col style="width: 8%"> |
|
|
|
<col style="width: 15%"> |
|
|
|
</colgroup> |
|
|
|
<thead> |
|
|
|
<tr><th>序号</th><th>工单号</th><th>产品编码</th><th>物料编码</th><th>物料名称</th><th>RFID / 标签号</th><th>状态</th><th>说明</th></tr> |
|
|
|
<!-- 六屏仅展示标签物料编码,移除产品编码列后将空间分配给物料名称 - rqrq --> |
|
|
|
<tr><th>序号</th><th>工单号</th><th>物料编码</th><th>物料名称</th><th>RFID / 标签号</th><th>状态</th><th>说明</th></tr> |
|
|
|
</thead> |
|
|
|
<tbody> |
|
|
|
<tr v-for="(item, index) in visibleRows" :key="item.rfidBarcode"> |
|
|
|
<td>{{ index + 1 }}</td> |
|
|
|
<td :title="item.orderNo">{{ item.orderNo || '-' }}</td> |
|
|
|
<td :title="item.orderPartNo">{{ item.orderPartNo || '-' }}</td> |
|
|
|
<!-- partNo来自标签表handling_unit.part_no;名称及悬浮提示最多取前100位,空值显示横线 - rqrq --> |
|
|
|
<td :title="item.partNo">{{ item.partNo || '-' }}</td> |
|
|
|
<td class="description" :title="item.partDesc">{{ item.partDesc || '-' }}</td> |
|
|
|
<td class="description" :title="(item.partDesc || '').slice(0, 100)">{{ (item.partDesc || '').slice(0, 100) || '-' }}</td> |
|
|
|
<td class="barcode" :title="item.rfidBarcode">{{ item.rfidBarcode }}</td> |
|
|
|
<td><span :class="['status-badge', item.status === '已完成' ? 'completed' : 'pending']">{{ item.status }}</span></td> |
|
|
|
<td class="row-message" :title="item.message">{{ item.message || '-' }}</td> |
|
|
|
|