|
@@ -304,6 +304,8 @@ const queryDayworkParams = ref({
|
|
|
});
|
|
|
const queryItemParams = ref({
|
|
|
dayworkId: "0",
|
|
|
+ isAmend: 0,
|
|
|
+ isWasteRecycling: 0,
|
|
|
pageNum: 1,
|
|
|
pageSize: 10,
|
|
|
technologicalProcessDetailId: null,
|
|
@@ -367,6 +369,8 @@ function handleDayworkCurrentChange(row) {
|
|
|
queryItemParams.value.processId = null;
|
|
|
currentDaywork.value = row;
|
|
|
queryItemParams.value.dayworkId = currentDaywork.value.id;
|
|
|
+ queryItemParams.value.isAmend = row.isAmend;
|
|
|
+ queryItemParams.value.isWasteRecycling = row.isWasteRecycling;
|
|
|
queryItemParams.value.technologicalProcessDetailId = null;
|
|
|
queryItemParams.value.technologicalProcessId = row.technologicalProcessId;
|
|
|
getDayworkItems();
|