Sfoglia il codice sorgente

优化准出报告

qinzhipeng_v@didiglobal.com 4 anni fa
parent
commit
e9d47ffd6e

+ 2 - 2
src/views/reportManagement/ReleaseReport/newReleaeTemplate.vue

@@ -258,14 +258,14 @@ export default {
     },
 
     async remoteMethod_data(query) { // 远程搜索任务
-      const res = await taskList({ name: query })
+      const res = await taskList({ id: query })
       if (res.code === 200) {
         this.tasksDetailList = [...this.tasksDetailList, ...res.data]
       }
     },
 
     async remoteMethod(query) { // 远程搜索任务
-      const res = await taskList({ name: query })
+      const res = await taskList({ id: query })
       if (res.code === 200) {
         this.tasksOptions = res.data
       }