wangxin 1 year ago
parent
commit
b5fa674a96
1 changed files with 4 additions and 0 deletions
  1. 4 0
      src/views/business/daywork/index.vue

+ 4 - 0
src/views/business/daywork/index.vue

@@ -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();