瀏覽代碼

任务的变更令

ZaiZai 1 年之前
父節點
當前提交
ca19d2d0bd
共有 2 個文件被更改,包括 5 次插入2 次删除
  1. 1 1
      public/version.json
  2. 4 1
      src/views/tasks/components/hc-data/changeRequest.vue

+ 1 - 1
public/version.json

@@ -1,3 +1,3 @@
 {
-  "value": "20240106115721"
+  "value": "20240106120019"
 }

+ 4 - 1
src/views/tasks/components/hc-data/changeRequest.vue

@@ -90,12 +90,15 @@ const tableData = ref([])
 const getTableData = async () => {
     tableData.value = []
     tableLoading.value = true
-    const {ids, treeId} = taskInfo.value
+    const {ids, treeId, taskId, dataId, primaryKeyIdMeter} = taskInfo.value
     const { data } = await orderApi.addForm({
         ...searchForm.value,
+        primaryKeyIdMeter: primaryKeyIdMeter ?? '',
         projectId: projectId.value,
         contractId: contractId.value,
+        taskId: taskId ?? '',
         nodeId: treeId ?? '',
+        dataId: dataId ?? '',
         ids: ids ?? '',
     })
     tableData.value = getArrValue(data)