|
@@ -13,7 +13,7 @@
|
|
|
@search-change="searchChange"
|
|
|
@size-change="dataList"
|
|
|
@current-change="dataList"
|
|
|
-
|
|
|
+
|
|
|
>
|
|
|
<template #seqNo="{ row }">
|
|
|
<el-tag :type="chooseTagType(row.seqNo, 'css')">{{
|
|
@@ -265,7 +265,7 @@ const handleCellClick = (row, column, event) => {
|
|
|
tabNameComRef.get(defaultTabName.value)?.value.refreshTra(temRow.value);
|
|
|
}
|
|
|
//每次点击都要获取tab页面的数量
|
|
|
- traceabilityTabCount({ seqNo: row.seqNo }).then(({ data }) => {
|
|
|
+ traceabilityTabCount({workOrderCode: row.workOrderCode, seqNo: row.seqNo }).then(({ data }) => {
|
|
|
tabCount = Object.assign(tabCount, data);
|
|
|
});
|
|
|
if (row.workOrderCode == productReviewInfo.workOrderCode) {
|
|
@@ -273,7 +273,7 @@ const handleCellClick = (row, column, event) => {
|
|
|
return;
|
|
|
}
|
|
|
//产品信息
|
|
|
- getMaterialDetailsByseqNo(row.seqNo).then(({ data }) => {
|
|
|
+ getMaterialDetailsByseqNo(row.workOrderCode,row.seqNo).then(({ data }) => {
|
|
|
productReviewInfo = Object.assign(productReviewInfo, data);
|
|
|
productReviewInfo.workOrderCode = row.workOrderCode;
|
|
|
// productReviewInfo.outNum =
|