|
@@ -58,7 +58,7 @@ defineExpose({
|
|
|
</div>
|
|
|
|
|
|
<div class="tableTitle">模块筛选情况</div>
|
|
|
- <table>
|
|
|
+ <table v-for="(item, index) in tableData.filterList" :key="index">
|
|
|
<thead>
|
|
|
<tr>
|
|
|
<th rowspan="2">序号</th>
|
|
@@ -68,19 +68,18 @@ defineExpose({
|
|
|
>产品型号<br />检验批号</span
|
|
|
>
|
|
|
</th>
|
|
|
- <th colspan="2">JMT332024</th>
|
|
|
+ <th colspan="2" v-for="(itemCheck, index) in item.checkList">{{itemCheck.materialModel}} {{itemCheck.checkCode}}</th>
|
|
|
</tr>
|
|
|
- <tr>
|
|
|
+ <tr v-for="(itemCheck, index) in item.checkList">
|
|
|
<th class="vertical-text">数量</th>
|
|
|
<th class="vertical-text">剔除数</th>
|
|
|
</tr>
|
|
|
</thead>
|
|
|
<tbody>
|
|
|
- <tr v-for="(item, index) in moduleScreeningData" :key="index">
|
|
|
- <td>{{ index + 1 }}</td>
|
|
|
- <td>封前目检验</td>
|
|
|
- <td>52</td>
|
|
|
- <td>66</td>
|
|
|
+ <tr v-for="(itemOperation, index) in item.filterDetailList" :key="index">
|
|
|
+ <td v-for="(item, index) in itemOperation">{{ item }}</td>
|
|
|
+
|
|
|
+
|
|
|
</tr>
|
|
|
</tbody>
|
|
|
</table>
|
|
@@ -108,11 +107,11 @@ defineExpose({
|
|
|
</thead>
|
|
|
<tbody>
|
|
|
<tr v-for="(item, index) in tableData.salesReportList" :key="index">
|
|
|
- <td>{{ index }}</td>
|
|
|
<td>{{ item.created }}</td>
|
|
|
<td>{{ item.materialModel }}</td>
|
|
|
<td>{{ item.workOrderCode }}</td>
|
|
|
<td>{{ item.num }}</td>
|
|
|
+ <td>{{ item.customer }}</td>
|
|
|
<td>{{ item.remark1 }}</td>
|
|
|
<td>{{ item.remark3 }}</td>
|
|
|
<td>{{ item.remark4 }}</td>
|
|
@@ -168,11 +167,11 @@ defineExpose({
|
|
|
</tr>
|
|
|
</thead>
|
|
|
<tbody>
|
|
|
- <tr v-for="(item, index) in productAcceptanceData" :key="index">
|
|
|
- <td>{{ item.id }}</td>
|
|
|
- <td>{{ item.model }}</td>
|
|
|
- <td>{{ item.batch }}</td>
|
|
|
- <td>{{ item.sampleQuantity }}</td>
|
|
|
+ <tr v-for="(item, index) in tableData.instockReportList" :key="index">
|
|
|
+ <td>{{ index+1 }}</td>
|
|
|
+ <td>{{ item.materialModel }}</td>
|
|
|
+ <td>{{ item.workOrderCode }}</td>
|
|
|
+ <td>{{ item.num }}</td>
|
|
|
</tr>
|
|
|
</tbody>
|
|
|
</table>
|