|
@@ -282,7 +282,7 @@ const handleCellClick = (row, column, event) => {
|
|
|
tabNameComRef.get(defaultTabName.value)?.value.refreshTra(temRow.value);
|
|
|
}
|
|
|
//每次点击都要获取tab页面的数量
|
|
|
- traceabilityTabCount({ seqNo: row.seqNo }).then(({ data }) => {
|
|
|
+ traceabilityTabCount({ seqNo: row.seqNo,workOrderCode: row.workOrderCode }).then(({ data }) => {
|
|
|
tabCount = Object.assign(tabCount, data);
|
|
|
});
|
|
|
if (row.workOrderCode == productReviewInfo.workOrderCode) {
|
|
@@ -290,7 +290,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 =
|